SqlBoolean::CompareTo Method (Object^)

 

Compares this SqlBoolean structure to a specified object and returns an indication of their relative values.

Namespace:   System.Data.SqlTypes
Assembly:  System.Data (in System.Data.dll)

public:
virtual int CompareTo(
	Object^ value
) sealed

Parameters

value
Type: System::Object^

An object to compare, or a null reference (Nothing in Visual Basic).

Return Value

Type: System::Int32

A signed number that indicates the relative values of the instance and value.

Value

Description

A negative integer

This instance is less than value.

Zero

This instance is equal to value.

A positive integer

This instance is greater than value.

-or-

value is a null reference (Nothing in Visual Basic).

Any instance of SqlBoolean, regardless of its value, is considered greater than a null reference (Nothing in Visual Basic).

.NET Framework
Available since 1.1
Return to top
Show: