DateTime 常用

Posted zeng-qh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DateTime 常用相关的知识,希望对你有一定的参考价值。

时间转换 

       //或者直接使用 using System.Collections.ObjectModel; 
            System.Collections.ObjectModel.ReadOnlyCollection<TimeZoneInfo> timeZonesList = TimeZoneInfo.GetSystemTimeZones();//返回时区信息在本地系统上可用的所有时区的已排序集合。
            
            DateTime time = DateTime.UtcNow;//创建UTC 时间
            TimeZoneInfo timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("China Standard Time");

            DateTime LocalTime = TimeZoneInfo.ConvertTimeFromUtc(time, timeZoneInfo);//UTC TO Local  

            DateTime UtcTime =TimeZoneInfo.ConvertTimeToUtc(LocalTime, timeZoneInfo);//Local TO UTC

 

以上是关于DateTime 常用的主要内容,如果未能解决你的问题,请参考以下文章

python:datetime类常用内容

C#常用代码片段备忘

常用python日期日志获取内容循环的代码片段

学习笔记:python3,代码片段(2017)

swift常用代码片段

# Java 常用代码片段