decipher() public method

public decipher ( string encoded, string frequencyOrder ) : string[]
encoded string
frequencyOrder string
return string[]
コード例 #1
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 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();
 }
コード例 #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();
        }