コード例 #1
0
        static void Main(string[] args)
        {
            CCipher c = new CCipher();

            Console.WriteLine(c.decode("VQREQFGT", 2));
            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 static void Main(string[] args)
 {
     CCipher c = new CCipher();
     Console.WriteLine(c.decode("VQREQFGT",2));
     Console.ReadLine();
 }