DateTime.UniversalTime Field

Definition

A 64-bit signed integer that represents a point in time as the number of 100-nanosecond intervals prior to or after midnight on January 1, 1601 (according to the Gregorian Calendar).

Note

In C++/WinRT, this field does not exist, because in that language projection DateTime is a specialization of std::chrono::time_point. If you need the raw integer value, use time_point::time_since_epoch to obtain a std::chrono::duration, and use its count method to obtain the raw count.

public: long long UniversalTime;
long UniversalTime;
public long UniversalTime;
Public UniversalTime As Long 

Field Value

Int64

long long

long

Applies to