C# DateTime UtcNow
Description
DateTime UtcNow
gets a DateTime object that is set to the
current date and time on this computer, expressed as the Coordinated Universal
Time (UTC).
Syntax
DateTime.UtcNow
has the following syntax.
public static DateTime UtcNow { get; }
Example
The following example uses the DateTime.UtcNow property.
using System;// w w w. j a v a2 s. c o m
class Sample
{
public static void Main()
{
DateTime saveUtcNow = DateTime.UtcNow;
Console.WriteLine(saveUtcNow);
}
}
The code above generates the following result.