C# DateTimeOffset MinValue
Description
DateTimeOffset MinValue
represents the earliest possible
DateTimeOffset value. This field is read-only.
Syntax
DateTimeOffset.MinValue
has the following syntax.
public static readonly DateTimeOffset MinValue
Example
using System;/*from www . j a va2 s .co m*/
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(DateTimeOffset.MinValue);
}
}
The code above generates the following result.