ExtensionInfoCompareTo Method |
Compares this instance to a specified object or Boolean and returns an indication of their relative values.
Return Value | Condition |
---|
Less than Zero |
The instance is false and the object is true |
Zero |
This instance and obj are equal (either both are true or both are false). |
Greater than Zero |
This instance is true and obj is false. -or- obj is a null reference (Nothing in Visual Basic). |
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public int CompareTo(
Object obj
)
Public Function CompareTo (
obj As Object
) As Integer
Parameters
- obj
- Type: SystemObject
An object to compare to this instance, or a null reference (Nothing in Visual Basic).
Return Value
Type:
Int32A signed integer that indicates the relative order of this instance and obj.
Implements
IComparableCompareTo(Object)See Also