What is this date and time format?

dasPanjo

I was wondering if anyone knows this time-format:

  • the value 635872032000000000 represents the 01.Jan 2016.
  • the value 636502752000000000 represents the 31.Dec 2017.

I googled the value and found, that sharepoint is taking this as a parameter too.

Does someone know the format, how to use it or where it's from?

Dmitry Bychenko

These dates are represented in ticks:

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.

e.g. C# code

  long value = 635872032000000000L;

  DateTime result = new DateTime(value);

  Console.Write(result);

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to change Date/Time format to English?

分類Dev

What is this date time format? How to convert it into a human readable output? Why it returns this output?

分類Dev

Spring @RequestParam DateTime format as ISO 8601 Date Optional Time

分類Dev

Spring @RequestParam DateTime format as ISO 8601 Date Optional Time

分類Dev

How to get current date time format in SQlite?

分類Dev

What does CCYYMMDD date format mean?

分類Dev

Can NSDateFormatter format a date relative to a time other than the current time?

分類Dev

How to format the value of input[time] when bound to Date()-object

分類Dev

VALUE error when attempting to format a date and time cell

分類Dev

What is the Excel Date Format to retain dates in this specific format?

分類Dev

pandas date-time format VS google sheets date format

分類Dev

how to convert python time.time() to date format for sql insertion

分類Dev

How do I get the current date and time in the format given Below

分類Dev

Karati Api - Validating date and time format

分類Dev

Inconsistent date time format for German locale

分類Dev

What date time should I put into the database

分類Dev

Convert miliseconds to date and time and format by locale

分類Dev

R : how to define date and time format

分類Dev

Parse Date and Time in specific format

分類Dev

format a time series as dataframe with julian date

分類Dev

How to change date-time format?

分類Dev

How to format the given time string and convert to date/time object

分類Dev

Convert GMT date format to only time format

分類Dev

How can I format date_space_hour to a time format

分類Dev

What is the command to update time and date from internet

分類Dev

convert text string to date/time format

分類Dev

PHP - Convert this string to another date/time format

分類Dev

Date time conversion in Javascript from format "/Date(1535515200000)/"

分類Dev

Formatter in DateTimeFormatter for ISO 8601 date format of the time

Related 関連記事

  1. 1

    How to change Date/Time format to English?

  2. 2

    What is this date time format? How to convert it into a human readable output? Why it returns this output?

  3. 3

    Spring @RequestParam DateTime format as ISO 8601 Date Optional Time

  4. 4

    Spring @RequestParam DateTime format as ISO 8601 Date Optional Time

  5. 5

    How to get current date time format in SQlite?

  6. 6

    What does CCYYMMDD date format mean?

  7. 7

    Can NSDateFormatter format a date relative to a time other than the current time?

  8. 8

    How to format the value of input[time] when bound to Date()-object

  9. 9

    VALUE error when attempting to format a date and time cell

  10. 10

    What is the Excel Date Format to retain dates in this specific format?

  11. 11

    pandas date-time format VS google sheets date format

  12. 12

    how to convert python time.time() to date format for sql insertion

  13. 13

    How do I get the current date and time in the format given Below

  14. 14

    Karati Api - Validating date and time format

  15. 15

    Inconsistent date time format for German locale

  16. 16

    What date time should I put into the database

  17. 17

    Convert miliseconds to date and time and format by locale

  18. 18

    R : how to define date and time format

  19. 19

    Parse Date and Time in specific format

  20. 20

    format a time series as dataframe with julian date

  21. 21

    How to change date-time format?

  22. 22

    How to format the given time string and convert to date/time object

  23. 23

    Convert GMT date format to only time format

  24. 24

    How can I format date_space_hour to a time format

  25. 25

    What is the command to update time and date from internet

  26. 26

    convert text string to date/time format

  27. 27

    PHP - Convert this string to another date/time format

  28. 28

    Date time conversion in Javascript from format "/Date(1535515200000)/"

  29. 29

    Formatter in DateTimeFormatter for ISO 8601 date format of the time

ホットタグ

アーカイブ