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

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

See Also

Reference

GenericParameterHelper Class

Microsoft.VisualStudio.TestTools.UnitTesting Namespace