Click or drag to resize
TimeSpanEquality Operator
Indicates whether two TimeSpan instances are equal.

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 values of t1 and t2 are equal; otherwise, false.
See Also