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.
我有一个 UTC 日期,我想直接在我的 DDay iCalendar 中使用,但我不知道如何告诉图书馆时间是 UTC。我相信这是在我的时间结束时附加一个 Z 的问题,但我不知道如何指定 DDay 应该以“Z”为后缀:
“好” iCalendar 日期
DTEND:20120110T223000Z
“坏”的 iCalendar 日期
DTEND:20120119T170000
这是我们实现它的方式:
string sValue = DateTime.Now.ToUniversalTime().ToString(@"yyyyMMdd\THHmmss\Z");