ReadOnlySet<T>.ISet<T>.Add(T) 方法

定义

将元素添加到当前集,并返回一个值,该值指示元素是否已成功添加。

 virtual bool System.Collections.Generic.ISet<T>.Add(T item) = System::Collections::Generic::ISet<T>::Add;
bool ISet<T>.Add (T item);
abstract member System.Collections.Generic.ISet<T>.Add : 'T -> bool
override this.System.Collections.Generic.ISet<T>.Add : 'T -> bool
Function Add (item As T) As Boolean Implements ISet(Of T).Add

参数

item
T

要添加到集的元素。

返回

如果元素已添加到集,则 true;如果元素已在集中,则 false

实现

适用于