Dictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Contains 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定 ICollection<T> 是否包含特定值。
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
要在 ICollection<T> 中定位的对象。
返回
如果在 true
中找到 item
,则为 ICollection<T>;否则为 false
。
实现
注解
在如何确定对象是否相等方面这些实现可能存在差异;例如,List<T> 使用 Default,而 Dictionary<TKey,TValue> 允许用户指定 IComparer<T> 实现以用来对键进行比较。
此方法是 O (n
) 操作,其中 n
为 Count。