Hello,
I have two hashsets of integer as below:
the first hashset includes 1 and 2 and the second hashset includes 1 and 3.Code:Private _ELSPropNames As New HashSet(Of Integer) Private _ELSPropNames1 As New HashSet(Of Integer)
I want to mix these two hashsets to one hashset but i need 1 to be included twice in my new hashset. do you know how to do it?