Condividi tramite


Metodo DataServiceProviderMethods.Compare (Boolean, Boolean)

Questa API supporta l'infrastruttura e non può essere utilizzata direttamente dal codice.

Restituisce informazioni sul confronto per i parametri booleani in un'espressione dell'operazione.

Spazio dei nomi  System.Data.Services.Providers
Assembly:  Microsoft.Data.Services (in Microsoft.Data.Services.dll)

Sintassi

'Dichiarazione
Public Shared Function Compare ( _
    left As Boolean, _
    right As Boolean _
) As Integer
'Utilizzo
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

Parametri

Valore restituito

Tipo: System.Int32

Valore

Condizione

-1

left è minore di right.

0

x è uguale a y.

1

left è maggiore di right.

Osservazioni

In questo confronto true è maggiore di false.

Vedere anche

Riferimento

DataServiceProviderMethods Classe

Overload Compare

Spazio dei nomi System.Data.Services.Providers