MatchCollection.IList.Contains(Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷此集合是否包含特定的值。
virtual bool System.Collections.IList.Contains(System::Object ^ value) = System::Collections::IList::Contains;
bool IList.Contains (object value);
abstract member System.Collections.IList.Contains : obj -> bool
override this.System.Collections.IList.Contains : obj -> bool
Function Contains (value As Object) As Boolean Implements IList.Contains
參數
- value
- Object
要在集合中找出的物件。
傳回
如果在集合中找到 Object 則為 true
,否則為 false
。
實作
備註
從 .NET Framework 2.0 開始,這個方法會使用 集合的物件 Equals 和 CompareTo 方法 item
來判斷專案是否存在。 在舊版的 .NET Framework中,此判斷是使用 Equals 集合中 物件上 參數的 item
和 CompareTo 方法進行。