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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version