[This is preliminary documentation and is subject to change.]

Indicates whether a specified TimeSpanFormattable is less than another specified TimeSpanFormattable.

Namespace: Tools
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public static bool operator <(
	TimeSpanFormattable t1,
	TimeSpanFormattable t2
)
Visual Basic
Public Shared Operator < ( _
	t1 As TimeSpanFormattable, _
	t2 As TimeSpanFormattable _
) As Boolean
Visual C++
public:
static bool operator <(
	TimeSpanFormattable t1, 
	TimeSpanFormattable t2
)
F#
static let inline (<)
        t1:TimeSpanFormattable * 
        t2:TimeSpanFormattable  : bool
JScript
JScript does not support overloaded operators.

Return Value

true if the value of t1 is less than the value of t2; otherwise, false.

See Also