Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想转换DateTime.Today为 GMT 时间。
DateTime.Today
即,如果我在洛杉矶,现在是 2012 年 2 月 22 日晚上 11 点,我希望 DateTime.Today 是 2012 年 2 月 23 日,因为它将是格林威治标准时间的那一天。
没有DateTime.UtcToday,但你可以试试DateTime.UtcNow.Date
DateTime.UtcToday
DateTime.UtcNow.Date
DateTime.UtcNow会给你当前的世界时间。
DateTime.UtcNow