共用方式為


ConcurrentDictionary<TKey,TValue>.AlternateLookup<TAlternateKey>.Item[TAlternateKey] 屬性

定義

取得或設定與指定替代索引鍵相關聯的值。

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

參數

key
TAlternateKey

要取得或設定之值的替代索引鍵。

屬性值

TValue

與指定替代索引鍵相關聯的值。 如果找不到指定的替代索引鍵,取得作業會擲回

KeyNotFoundException,而集合作業會建立具有指定索引鍵的新專案。

例外狀況

key null

已擷取 屬性,而且集合中不存在替代索引鍵。

適用於