SortedList<TKey,TValue>.IndexOfKey(TKey) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
搜尋指定的索引鍵,並傳回整個 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
參數
- key
- TKey
要在 SortedList<TKey,TValue> 中尋找的索引鍵。
傳回
如果找到,則為整個 key
內 SortedList<TKey,TValue> 之以零起始的索引,否則為 -1。
例外狀況
key
為 null
。
備註
這個方法會執行二進位搜尋;因此,這個方法是 O (記錄 n
) 作業,其中 n
是 Count。