SortedList<TKey,TValue>.IndexOfKey(TKey) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches for the specified key and returns the zero-based index within the entire SortedList<TKey,TValue>.
public:
int IndexOfKey(TKey key);
public int IndexOfKey (TKey key);
member this.IndexOfKey : 'Key -> int
Public Function IndexOfKey (key As TKey) As Integer
Parameters
- key
- TKey
The key to locate in the SortedList<TKey,TValue>.
Returns
The zero-based index of key
within the entire SortedList<TKey,TValue>, if found; otherwise, -1.
Exceptions
key
is null
.
Remarks
This method performs a binary search; therefore, this method is an O(log n
) operation, where n
is Count.
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.