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
Bekerjasama dengan kami di GitHub
Sumber untuk kandungan ini boleh didapati di GitHub, di mana anda juga boleh mencipta dan menyemak isu dan menarik permintaan. Untuk maklumat lanjut, lihat panduan penyumbang kami.