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 常用的主要内容,如果未能解决你的问题,请参考以下文章