Esempio n. 1
0
 static void Main(string[] args)
 {
     Decipher x = new Decipher();
     string[] a = { "RAZVLHAR KNW CNR",
       "HEA HNFMNSAR NFAK" };
     Console.WriteLine(x.decipher(a, "EORTPNFHSCDIWG"));
     Console.ReadLine();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Decipher x = new Decipher();

            string[] a = { "RAZVLHAR KNW CNR",
                           "HEA HNFMNSAR NFAK" };
            Console.WriteLine(x.decipher(a, "EORTPNFHSCDIWG"));
            Console.ReadLine();
        }