共用方式為


OrderedDictionary<TKey,TValue>.Item[TKey] 屬性

定義

取得或設定具有指定索引鍵的專案。

public:
 property TValue default[TKey] { TValue get(TKey key); void set(TKey key, TValue value); };
public TValue this[TKey key] { get; set; }
member this.Item('Key) : 'Value with get, set
Default Public Property Item(key As TKey) As TValue

參數

key
TKey

要取得或設定之專案的索引鍵。

屬性值

TValue

具有指定索引鍵的專案。

實作

例外狀況

key null

已擷取屬性,且集合中不存在 key

備註

設定現有索引鍵的值不會影響其在集合中的順序。

適用於