KeysConverter.Compare(Object, Object) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Compare deux valeurs de clés pour contrôler leur équivalence.
public:
virtual int Compare(System::Object ^ a, System::Object ^ b);
public int Compare (object a, object b);
public int Compare (object? a, object? b);
abstract member Compare : obj * obj -> int
override this.Compare : obj * obj -> int
Public Function Compare (a As Object, b As Object) As Integer
Paramètres
Retours
Entier indiquant la relation entre les deux paramètres.
Type valeur | Condition |
---|---|
Un entier négatif. | a est inférieur à b .
|
0 | a est égal à b .
|
Entier positif. | a est supérieur à b .
|
Implémente
Remarques
Cette méthode utilise String.Compare pour comparer les deux objets.