DataServiceProviderMethods.Compare Method (Boolean, Boolean)
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Returns comparison information for Boolean parameters in an operation expression.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function Compare ( _
left As Boolean, _
right As Boolean _
) As Integer
'Usage
Dim left As Boolean
Dim right As Boolean
Dim returnValue As Integer
returnValue = DataServiceProviderMethods.Compare(left, _
right)
public static int Compare(
bool left,
bool right
)
public:
static int Compare(
bool left,
bool right
)
static member Compare :
left:bool *
right:bool -> int
public static function Compare(
left : boolean,
right : boolean
) : int
Parameters
- left
Type: System.Boolean
The first parameter value.
- right
Type: System.Boolean
The second parameter value.
Return Value
Type: System.Int32
Value |
Condition |
---|---|
-1 |
left is less than right. |
0 |
x equals y. |
1 |
left is greater than right. |
Remarks
In this comparison, true is greater than false.