Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
using System; using System.Collections.Generic; class Program { static void Main() { HashSet<char> hs = new HashSet<char>(); hs.Add('a'); hs.Add('b'); hs.Add('c'); string s = string.Join("", hs); Console.Write(s); } } /* run: abc */