Bridge

Boolean..::..CompareTo Method (Object)

Compares this instance to a specified object and returns an integer that indicates their relationship to one another.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public int CompareTo(
	Object obj
)
<TemplateAttribute> _
Public Function CompareTo ( _
	obj As Object _
) As Integer
[TemplateAttribute]
public:
int^ CompareTo(
	Object^ obj
)

Parameters

obj
Type: System..::..Object
An object to compare to this instance, or null.

Return Value

A signed integer that indicates the relative order of this instance and obj.Return Value Condition Less than zero This instance is false and obj 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 null.

Exceptions


ExceptionCondition
System..::..ArgumentExceptionobj is not a Boolean.