C# – 格式化当前时间

前端之家收集整理的这篇文章主要介绍了C# – 格式化当前时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在C#中,如何以下列格式获取当前的DateTime? 2011-08-10T21:36:01.6327538Z

解决方法

DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fffffffZ")

请记住,DateTime.Now有时只精确到千分之一秒,具体取决于系统时钟. This page显示如下:

It is possible to display very small fractional units of a second,such as ten thousandths of a second or hundred-thousandths of a second. However,these values may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On Windows NT 3.5 and later,and Windows Vista operating systems,the clock’s resolution is approximately 10-15 milliseconds.

但是,如果您自己填充DateTime,可以使其更准确.我不知道任何其他内置的库比DateTime.UtcNow更精确.

此外,DateTime.UtcNow.ToString(“o”)将为您提供一个序列日期时间字符串.这并没有指定最后的时区,所以如果你正在处理Utc,你仍然需要添加Z到最后

原文链接:https://www.f2er.com/csharp/94778.html

猜你在找的C#相关文章