标签: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
标签:style ctime 创建 集合 rom ons only rtti mtime
原文地址:https://www.cnblogs.com/zeng-qh/p/11989830.html