Home »
.Net »
C# Programs
C# program to demonstrate the use of MaxValue property of TimeSpan structure
Here, we are going to demonstrate use of MaxValue property of TimeSpan structure in C#.Net.
Submitted by Nidhi, on April 18, 2021
Here, we will learn about the MaxValue property of TimeSpan. This is a read-only property that is used to represent the Maximum System.Timespan value.
Syntax:
TimeSpan TimeSpan.MaxValue;
Return value:
This property returns maximum System.Timespan value.
Program:
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 »