DateTimeOffset::UtcDateTime Property
Gets a DateTime value that represents the Coordinated Universal Time (UTC) date and time of the current DateTimeOffset object.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::DateTimeThe Coordinated Universal Time (UTC) date and time of the current DateTimeOffset object.
The UtcDateTime property performs a dual conversion:
It converts the date and time of the current DateTimeOffset object to Coordinated Universal Time (UTC). The conversion is performed by subtracting the value of the Offset property from the date and time of the current DateTimeOffset object.
It converts the DateTimeOffset value to a DateTime value.
The Kind property of the returned DateTime value is set to DateTimeKind::Utc.
Retrieving the value of the UtcDateTime property is equivalent to calling the current DateTimeOffset object's ToUniversalTime.DateTime property, except that the Kind property of the latter DateTime value is DateTimeKind::Unspecified.
The following example shows how to use of the UtcDateTime property to display a DateTimeOffset value and its corresponding UTC time.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.