This documentation is archived and is not being maintained.

DateTime::UtcNow Property

Gets a DateTime object that is set to the current date and time on this computer, expressed as the Coordinated Universal Time (UTC).

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

public:
static property DateTime UtcNow {
	DateTime get ();
}

Property Value

Type: System::DateTime
A DateTime whose value is the current UTC date and time.

The resolution of this property depends on the system timer.

System

Approximate Resolution

Windows NT 3.5 and later

10 milliseconds

Windows 98

55 milliseconds

Starting with the .NET Framework version 2.0, the return value is a DateTime whose Kind property returns DateTimeKind::Utc.

An alternative to using UtcNow is DateTimeOffset::UtcNow. While the former indicates that a date and time value is Coordinated Universal Time (UTC) by assigning DateTimeKind::Utc to its DateTime::Kind property, the latter assigns the date and time value the UTC time's offset (equal to TimeSpan::Zero).

Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows CE Platform Note: In Windows CE, time is specific only to the second. You can get a more precise time span measurement, for example, in milliseconds, by using the TickCount property.

The following example uses the SpecifyKind method to demonstrate how the Kind property influences the ToLocalTime and ToUniversalTime conversion methods.

No code example is currently available or this language may not be supported.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0

XNA Framework

Supported in: 3.0, 2.0, 1.0
Show: