636529536000000000 是什么日期格式?
What date format is 636529536000000000?
我必须维护一个 ASPX 页面,通过以这种格式在查询字符串中传递一个值来增加 date/time:
636529536000000000 参考 2018 年 1 月 31 日
636530400000000000 参考 2018 年 2 月 1 日
url格式为:/reservas.aspx?t=636530400000000000
这是什么 date/time 格式?
可以是某个日期的天数,类似于儒略日期计算:
https://en.wikipedia.org/wiki/Julian_day#Julian_date_calculation
也可能合并时间?
没有代码的详细信息,我无法根据提供的值提供建议。
It is the number of ticks where a tick is one hundred nanoseconds or one ten-millionth of a second. The number of ticks is measured since the epoch DateTime.MinValue(0001 年 1 月 1 日午夜 12:00:00)。例如:
new DateTime(636529536000000000).ToString("F", CultureInfo.InvariantCulture)
输出:
Wednesday, 31 January 2018 00:00:00
我必须维护一个 ASPX 页面,通过以这种格式在查询字符串中传递一个值来增加 date/time:
636529536000000000 参考 2018 年 1 月 31 日
636530400000000000 参考 2018 年 2 月 1 日
url格式为:/reservas.aspx?t=636530400000000000
这是什么 date/time 格式?
可以是某个日期的天数,类似于儒略日期计算:
https://en.wikipedia.org/wiki/Julian_day#Julian_date_calculation
也可能合并时间?
没有代码的详细信息,我无法根据提供的值提供建议。
It is the number of ticks where a tick is one hundred nanoseconds or one ten-millionth of a second. The number of ticks is measured since the epoch DateTime.MinValue(0001 年 1 月 1 日午夜 12:00:00)。例如:
new DateTime(636529536000000000).ToString("F", CultureInfo.InvariantCulture)
输出:
Wednesday, 31 January 2018 00:00:00