Home »
.Net »
C# Programs
C# - TimeSpan.MaxValue Property with Example
In this tutorial, we will learn about the C# TimeSpan.MaxValue property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 29, 2023
TimeSpan.MaxValue Property
The TimeSpan.MaxValue is a read-only property that is used to represent the Maximum System.Timespan value.
Syntax
TimeSpan TimeSpan.MaxValue;
Parameter(s)
Return Value
This property returns maximum System.Timespan value.
C# Example of TimeSpan.MaxValue Property
The source code to demonstrate the use of MaxValue 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 max;
max = TimeSpan.MaxValue;
Console.WriteLine("Maximum Value: " + max);
}
}
Output
Maximum Value: 10675199.02:48:05.4775807
Press any key to continue . . .
C# TimeSpan Programs »