Share via


TestId.LessThan(TestId, TestId) Operator

Definition

Represents a less-than operator (<) that is used to determine whether a provided object would appear after the other provided object in a sorted list.

public:
 static bool operator <(Microsoft::VisualStudio::TestTools::Common::TestId ^ left, Microsoft::VisualStudio::TestTools::Common::TestId ^ right);
public static bool operator < (Microsoft.VisualStudio.TestTools.Common.TestId left, Microsoft.VisualStudio.TestTools.Common.TestId right);
static member ( < ) : Microsoft.VisualStudio.TestTools.Common.TestId * Microsoft.VisualStudio.TestTools.Common.TestId -> bool
Public Shared Operator < (left As TestId, right As TestId) As Boolean

Parameters

left
TestId

A TestId object.

right
TestId

A TestId object.

Returns

true if the left object would appear after the right object in a sorted list; otherwise, false.

Applies to