码迷,mamicode.com
首页 > 其他好文 > 详细

DateTime 常用

时间:2019-12-05 16:02:50      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:style   ctime   创建   集合   rom   ons   only   rtti   mtime   

时间转换 

       //或者直接使用 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 常用

标签:style   ctime   创建   集合   rom   ons   only   rtti   mtime   

原文地址:https://www.cnblogs.com/zeng-qh/p/11989830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!