ReadOnlyDictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Contains 方法

定义

确定集合中是否包含特定值。

 virtual bool System.Collections.Generic.ICollection<TValue>.Contains(TValue item) = System::Collections::Generic::ICollection<TValue>::Contains;
bool ICollection<TValue>.Contains (TValue item);
abstract member System.Collections.Generic.ICollection<TValue>.Contains : 'Value -> bool
override this.System.Collections.Generic.ICollection<TValue>.Contains : 'Value -> bool
Function Contains (item As TValue) As Boolean Implements ICollection(Of TValue).Contains

参数

item
TValue

要在集合中定位的对象。

返回

如果在集合中找到了 item,则为 true;否则为 false

实现

注解

此成员是显式接口成员的实现。 它只能在 ReadOnlyDictionary<TKey,TValue>.ValueCollection 实例被强制转换为 ICollection<T> 接口时使用。

适用于