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.
我有这个日期时间字符串 2020-06-30T20:59:59.415Z。现在我必须为这个日期时间字符串添加 1 秒。我将其转换为日期时间,此日期时间转换为其他格式,日期时间转换为其他日期时间。所以请解释一下,我可以加一秒钟
所需格式 yyyy-MM-dd'T'HH:mm:ssZ
谢谢,KD
这是代码并将其转换为其他时间
var datetime = DateTime.Parse("2020-06-30T20:59:59.415Z"); 结果:{7/1/2020 2:29:59 AM}
var 结果 = datetime.AddSeconds(1); 结果:{7/1/2020 2:30:00 AM}
string dtstr = result.ToString("o"); 结果:2020-07-01T02:30:00.4150000+05:30
要求的结果是:2020-06-30T21:00:00.415Z