C# TimeSpan Min value

Timespan shows the length of time.

To get the minimum value of TimeSpan, use the following property.

TimeSpan.MinValue

Example

using System;
using System.Linq;
public class Demo {
   public static void Main() {
      Console.WriteLine(TimeSpan.MinValue);
   }
}

Output

-10675199.02:48:05.4775808
Updated on: 2026-03-11T22:50:43+05:30

585 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements