static void Main() { Permute p = new Permute(); string c = Console.ReadLine(); char[] c2 = c.ToCharArray(); /*calling the permute*/ p.setper(c2); }
static void Main() { Permute p = new Permute(); string c = "sagiv"; char [] c2 = c.ToCharArray(); /*calling the permute*/ p.setper(c2); }