ConcurrentDictionary<TKey,TValue>.IDictionary.Values 属性

定义

获取一个包含 ICollection 中的值的 IDictionaryGets an ICollection that contains the values in the IDictionary.

property System::Collections::ICollection ^ System::Collections::IDictionary::Values { System::Collections::ICollection ^ get(); };
System.Collections.ICollection System.Collections.IDictionary.Values { get; }
member this.System.Collections.IDictionary.Values : System.Collections.ICollection
 ReadOnly Property Values As ICollection Implements IDictionary.Values

属性值

ICollection

包含 IDictionary 中的值的接口。An interface that contains the values in the IDictionary.

实现

注解

此成员是显式接口成员的实现。This member is an explicit interface member implementation. 它只能在 ConcurrentDictionary<TKey,TValue> 实例被强制转换为 IDictionary 接口时使用。It can be used only when the ConcurrentDictionary<TKey,TValue> instance is cast to an IDictionary interface.

适用于