ICollection<T>.Contains(T) 方法

定义

确定 ICollection<T> 是否包含特定值。

public:
 bool Contains(T item);
public bool Contains (T item);
abstract member Contains : 'T -> bool
Public Function Contains (item As T) As Boolean

参数

item
T

要在 ICollection<T> 中定位的对象。

返回

如果在 true 中找到 item,则为 ICollection<T>;否则为 false

注解

实现在确定对象相等性的方式上可能有所不同;例如, List<T> 使用 Comparer<T>.Default,而 Dictionary<TKey,TValue> 允许用户指定 IComparer<T> 用于比较键的实现。

适用于