Mono Class Library: System.Boolean Overview | Members

System.Boolean.CompareTo Method

Returns the sort order of the current instance compared to the specified bool . [Edit]

public int CompareTo (bool value)

Parameters

value
A bool to compare to the current instance. [Edit]

Returns

The return value is a negative number, zero, or a positive number reflecting the sort order of the current instance as compared to value. For non-zero return values, the exact value returned by this method is unspecified. The following table defines the return value:

Return ValueCondition
A negative numberCurrent instance is false and value is true.
ZeroCurrent instance == value .
Any positive numberCurrent instance is true and value is false.
[Edit]

Remarks

Note: This method is implemented to support the IComparable<Boolean> interface.
[Edit]

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0