ZERO property

TimeSpan ZERO
final

Represents the Maximum TimeSpan value. static final TimeSpan MAX_VALUE = new TimeSpan(Long.MAX_VALUE); Represents the Minimum TimeSpan value. static final TimeSpan MIN_VALUE = new TimeSpan(Long.MIN_VALUE); Represents the TimeSpan with a value of zero.

Implementation

/// Represents the Minimum TimeSpan value.
/// static final TimeSpan MIN_VALUE = new TimeSpan(Long.MIN_VALUE);

/// Represents the TimeSpan with a value of zero.
static final TimeSpan ZERO = new TimeSpan(0);