SortedList<TKey,TValue>.IndexOfKey(TKey) 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.
Recherche la clé spécifiée et retourne l'index de base zéro dans le SortedList<TKey,TValue> entier.
public:
int IndexOfKey(TKey key);
public int IndexOfKey (TKey key);
member this.IndexOfKey : 'Key -> int
Public Function IndexOfKey (key As TKey) As Integer
Paramètres
- key
- TKey
Clé à rechercher dans SortedList<TKey,TValue>.
Retours
Index de base zéro de key
dans le SortedList<TKey,TValue> entier, si elle existe ; sinon, -1.
Exceptions
key
a la valeur null
.
Remarques
Cette méthode effectue une recherche binaire ; Par conséquent, cette méthode est une opération O(log n
), où n
est Count.