C# TimeSpan MinValue
Description
TimeSpan MinValue
represents the minimum TimeSpan value.
This field is read-only.
Syntax
TimeSpan.MinValue
has the following syntax.
public static readonly TimeSpan MinValue
Example
The following example references and displays the value of the MinValue field.
/*w ww. j a v a 2 s. c om*/
using System;
class TimeSpanFieldsDemo
{
static void Main( )
{
Console.WriteLine( TimeSpan.MinValue );
}
}
The code above generates the following result.