SortedSet<T>.UnionWith(IEnumerable<T>) Método

Definição

Modifica o objeto SortedSet<T> atual para que ele contenha todos os elementos presentes no objeto atual ou na coleção especificada.

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))

Parâmetros

other
IEnumerable<T>

A coleção a ser comparada com o objeto SortedSet<T> atual.

Implementações

Exceções

other é null.

Comentários

Todos os elementos duplicados em other são ignorados.

Aplica-se a