Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
C# TimeSpan Max value
Timespan shows the length of time.
To get the maximum value of TimeSpan, use the following property.
TimeSpan.MaxValue
Example
using System;
using System.Linq;
public class Demo {
public static void Main() {
Console.WriteLine(TimeSpan.MaxValue);
}
}
Output
10675199.02:48:05.4775807
Advertisements
