Share via


TestId.Inequality(TestId, TestId) Operator

Definition

Represents an inequality operator (!=) that is used to determine whether the provided objects are not equal.

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 op_Inequality : 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 objects are not equal; otherwise, false.

Applies to