ConcurrentDictionary<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

位于指定索引处的键/值对的值。

实现

例外

keynull

已检索该属性且集合中不存在 key

适用于

另请参阅