[Edit]
+
0
-
0
c# add List into HashSet
1 2 3List<string> letters = new List<string> { "A", "B", "C" }; HashSet<string> alphabet = new HashSet<string>(letters);
1 2 3List<string> letters = new List<string> { "A", "B", "C" }; HashSet<string> alphabet = new HashSet<string>(letters);