FrozenSet<T>.ICollection<T>.Remove(T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 ICollection<T> 移除特定物件之第一個符合的元素。
virtual bool System.Collections.Generic.ICollection<T>.Remove(T item) = System::Collections::Generic::ICollection<T>::Remove;
bool ICollection<T>.Remove (T item);
abstract member System.Collections.Generic.ICollection<T>.Remove : 'T -> bool
override this.System.Collections.Generic.ICollection<T>.Remove : 'T -> bool
Function Remove (item As T) As Boolean Implements ICollection(Of T).Remove
參數
- item
- T
要從 ICollection<T> 移除的物件。
傳回
如果 true
已成功從 item
中移除,則為 ICollection<T>,否則為 false
。 如果在原本的 false
中找不到 item
,則這個方法也會傳回 ICollection<T>。