Partager via


RadioTableItem.CompareTo Method (Object)

 

Compares the current radio table item to the specified radio table item.

Namespace:   Microsoft.WindowsServerSolutions.Controls
Assembly:  AdminCommon (in AdminCommon.dll)

Syntax

public int CompareTo(
    object obj
)
public:
virtual int CompareTo(
    Object^ obj
) sealed
Public Function CompareTo (
    obj As Object
) As Integer

Parameters

  • obj
    Type: System.Object

    The radio table item to compare the current radio table item to.

Return Value

Type: System.Int32

An System.Int32:

  • Less than 0 if the current radio table item is less than the specified radio table item.

  • 0 if the current radio table item is equal to the specified radio table item.

  • Greater than 0 if the current radio table item is greater than the specified radio table item.

Implements

IComparable.CompareTo(Object)

See Also

RadioTableItem Class
Microsoft.WindowsServerSolutions.Controls Namespace

Return to top