SynchronizedCollection<T>.Remove(T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除集合中第一個出現的指定項目。
public:
virtual bool Remove(T item);
public bool Remove (T item);
abstract member Remove : 'T -> bool
override this.Remove : 'T -> bool
Public Function Remove (item As T) As Boolean
參數
- item
- T
要從集合中移除的物件。
傳回
如果從集合中成功移除項目,則為 true
,否則為 false
。
實作
備註
集合中位於已移除之項目後面的項目會向上移動,以佔用空出的位置,而且其索引也會跟著更新。