GenericParameterHelper.CompareTo Method
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public Function CompareTo ( _
obj As Object _
) As Integer
public int CompareTo(
Object obj
)
public:
virtual int CompareTo(
Object^ obj
) sealed
abstract CompareTo :
obj:Object -> int
override CompareTo :
obj:Object -> int
public final function CompareTo(
obj : Object
) : int
Parameters
obj
Type: ObjectA GenericParameterHelper to compare with the current instance.
Return Value
Type: Int32
A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
Less than zero
This instance is less than obj.Zero
This instance is equal to obj.Greater than zero
This instance is greater than obj.
Implements
IComparable.CompareTo(Object)
Exceptions
Exception | Condition |
---|---|
NotSupportedException | obj is not of type GenericParameterHelper. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.