我想知道是否有人知道这个时间格式:
>价值635872032000000000代表01.Jan 2016.
>价值636502752000000000代表31.Dec 2017.
我搜索了该值并发现,该sharepoint也将此作为参数.
有人知道格式,如何使用它或它来自哪里?
解决方法
这些日期以刻度表示:
https://msdn.microsoft.com/en-us/library/z2xf7zzk(v=vs.110).aspx
ticks
Type: System.Int64A 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);