Click or drag to resize
TimeSpanLessThan Operator
Indicates whether a specified TimeSpan is less than another specified TimeSpan.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static bool operator <(
	TimeSpan t1,
	TimeSpan t2
)

Parameters

t1
Type: SystemTimeSpan
The first time interval to compare.
t2
Type: SystemTimeSpan
The second time interval to compare.

Return Value

Type: Boolean
true if the value of t1 is less than the value of t2; otherwise, false.
See Also