c# – 这个日期和时间格式是什么?

前端之家收集整理的这篇文章主要介绍了c# – 这个日期和时间格式是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有人知道这个时间格式:

>价值635872032000000000代表01.Jan 2016.
>价值636502752000000000代表31.Dec 2017.

搜索了该值并发现,该sharepoint也将此作为参数.

有人知道格式,如何使用它或它来自哪里?

解决方法

这些日期以刻度表示:

https://msdn.microsoft.com/en-us/library/z2xf7zzk(v=vs.110).aspx

ticks
Type: System.Int64

A date and time expressed in the number of
100-nanosecond intervals that have elapsed since January 1,0001 at
00:00:00.000 in the Gregorian calendar.

例如C#代码

long value = 635872032000000000L;

  DateTime result = new DateTime(value);

  Console.Write(result);
原文链接:https://www.f2er.com/csharp/95035.html

猜你在找的C#相关文章