TableSectionBase<T>.Contains(T) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个布尔值,该值指示此 TableSectionBase<T> 对象是否具有对特定对象的引用。
public bool Contains (T item);
abstract member Contains : 'T -> bool
override this.Contains : 'T -> bool
参数
- item
- T
要确定此 TableSectionBase<T> 对象是否具有其引用的对象。
返回
System.Boolean
若 TableSectionBase<T> 对象包含一个对 true
的引用,则为 item
。 否则为 false
。
实现
System.Collections.Generic.ICollection`1.Contains(`0)