阅读量:0
在C#中,你可以使用DateTime
类和TimeZoneInfo
类来获取当前时区的时间。下面是一个简单的示例:
using System; class Program { static void Main() { // 获取当前时区 TimeZoneInfo localZone = TimeZoneInfo.Local; // 获取当前时区的时间 DateTime currentTime = DateTime.Now; // 将当前时间转换为当前时区的时间 DateTime localTime = TimeZoneInfo.ConvertTime(currentTime, localZone); Console.WriteLine("当前时区的时间: " + localTime); } }
这段代码首先获取当前时区(TimeZoneInfo.Local
),然后获取当前时间(DateTime.Now
),接着使用TimeZoneInfo.ConvertTime
方法将当前时间转换为当前时区的时间。最后,将结果输出到控制台。