ArraySegment<T>.ICollection<T>.Contains(T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷此陣列區段是否包含特定的值。
virtual bool System.Collections.Generic.ICollection<T>.Contains(T item) = System::Collections::Generic::ICollection<T>::Contains;
bool ICollection<T>.Contains (T item);
abstract member System.Collections.Generic.ICollection<T>.Contains : 'T -> bool
override this.System.Collections.Generic.ICollection<T>.Contains : 'T -> bool
Function Contains (item As T) As Boolean Implements ICollection(Of T).Contains
參數
- item
- T
要在陣列區段中尋找的物件。
傳回
如果在陣列區段中找到 item
則為 true
,否則為 false
。
實作
例外狀況
基礎陣列是 null
。
備註
這個成員是明確介面成員實作, 只有在 ArraySegment<T> 執行個體轉換成 ICollection<T> 介面時,才能使用這個成員。