var list = new List<string> {"A", "C", "B", "D", "A", "B", "E", "D", "B", "C"};
var set = new HashSet<string>(list);
foreach (string item in set) { Console.WriteLine(item); }
var list = new List<string> {"A", "C", "B", "D", "A", "B", "E", "D", "B", "C"};
var set = new HashSet<string>(list);
foreach (string item in set) { Console.WriteLine(item); }