OrderedDictionary<TKey,TValue>.IndexOf(TKey) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
決定 OrderedDictionary<TKey,TValue>中特定索引鍵的索引。
public:
int IndexOf(TKey key);
public int IndexOf (TKey key);
member this.IndexOf : 'Key -> int
Public Function IndexOf (key As TKey) As Integer
參數
- key
- TKey
要尋找的索引鍵。
傳回
找到 key
的索引;否則為 -1。
例外狀況
key
null
。