我正在将.Net 4.5的项目转换为针对.NetStandard 1.6的PCL,看起来TimeZoneInfo
没有方法ConvertTimeFromUtc
。如果进入的时间的类型设置为UTC有什么区别吗?
答案 0 :(得分:0)
要将DateTime转换为本地时间,您可以使用:
DateTime utcDateTime = DateTime.UtcNow;
DateTime localDateTime = new DateTime(utcDateTime.Ticks, DateTimeKind.Utc);
localDateTime = localDateTime.ToLocalTime();