SortedSet<T>.UnionWith(IEnumerable<T>) 方法

定义

修改当前的 SortedSet<T> 对象,使该对象包含当前对象或指定集合中存在的所有元素。

public:
 virtual void UnionWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void UnionWith (System.Collections.Generic.IEnumerable<T> other);
abstract member UnionWith : seq<'T> -> unit
override this.UnionWith : seq<'T> -> unit
Public Sub UnionWith (other As IEnumerable(Of T))

参数

other
IEnumerable<T>

要与当前的 SortedSet<T> 对象进行比较的集合。

实现

例外

othernull

注解

other 任何重复的元素将被忽略。

适用于