ConcurrentDictionary<TKey,TValue>.IDictionary.Item[Object] 属性

定义

获取或设置与指定的键关联的值。

property System::Object ^ System::Collections::IDictionary::Item[System::Object ^] { System::Object ^ get(System::Object ^ key); void set(System::Object ^ key, System::Object ^ value); };
object System.Collections.IDictionary.Item[object key] { get; set; }
object? System.Collections.IDictionary.Item[object key] { get; set; }
member this.System.Collections.IDictionary.Item(obj) : obj with get, set
 Property Item(key As Object) As Object Implements IDictionary.Item

参数

key
Object

要获取或设置的值的键。

属性值

与指定键关联的值,或者 null 如果 key 不在字典中,或者 key 是一种类型,则不能分配给 的键类型 ConcurrentDictionary<TKey,TValue>

实现

例外

keynull

将分配一个值,并且 key 属于不能分配给 ConcurrentDictionary<TKey,TValue> 的键类型或值类型的类型。

适用于

另请参阅