Home »
.Net »
C# Programs
C# - TimeSpan.MinValue Property with Example
In this tutorial, we will learn about the C# TimeSpan.MinValue property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 29, 2023
TimeSpan.MinValue Property
The TimeSpan.MinValue is a read-only property that is used to represent Minimum System.Timespan value.
Syntax
TimeSpan TimeSpan.MinValue;
Parameter(s)
Return Value
This property returns minimum System.Timespan value.
C# Example of TimeSpan.MinValue Property
The source code to demonstrate the use of MinValue property of TimeSpan structure is given below. The given program is compiled and executed successfully.
using System;
class TimeSpanDemo {
//Entry point of Program
static public void Main() {
TimeSpan min;
min = TimeSpan.MinValue;
Console.WriteLine("Minimum Value: " + min);
}
}
Output
Minimum Value: -10675199.02:48:05.4775808
Press any key to continue . . .
C# TimeSpan Programs »