C# DateTime Now
Description
DateTime Now
gets a DateTime object that is set to the current
date and time on this computer, expressed as the local time.
Syntax
DateTime.Now
has the following syntax.
public static DateTime Now { get; }
Example
The following example demonstrates Now property.
using System;/*from w w w. jav a 2 s. c o m*/
class Sample
{
public static void Main()
{
DateTime saveNow = DateTime.Now;
System.Console.WriteLine(saveNow);
}
}
The code above generates the following result.