Sdílet prostřednictvím


TestId.GreaterThan(TestId, TestId) Operator

Definition

Represents a greater-than operator (>) that is used to determine whether a provided object would appear before 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 before the right object; otherwise, false.

Applies to