Is there an AddRange equivalent for a HashSet in C#
With a list you can do: list.AddRange(otherCollection); There is no add range method in a HashSet. What is the best way to add … Read more
With a list you can do: list.AddRange(otherCollection); There is no add range method in a HashSet. What is the best way to add … Read more