Con una lista puedes hacer:
list.AddRange(otherCollection);
No hay un método de agregar rango en un HashSet . ¿Cuál es la mejor manera de agregar otra colección a un HashSet?
c#
collections
hashset
addrange
Stefanos Kargas
fuente
fuente
HashSet
(yISet
) fue creado con un término matemáticamente establecido.UnionWith
Era el término más cercano. Excepto porExcept
, que claramente debería llamarseSubtract
matemáticamente hablando.Esta es una forma:
fuente