ConcurrentDictionary<TKey,TValue>.IDictionary.Item[Object] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置与指定的键关联的值。
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>。
实现
例外
key
为 null
。
将分配一个值,并且 key
属于不能分配给 ConcurrentDictionary<TKey,TValue> 的键类型或值类型的类型。