Ejemplo n.º 1
0
        public void Run()
        {
            cipher cipher = new cipher();
            string message;

            Clear();
            Write("Enter text: ");
            message = ReadLine();
            WriteLine(cipher.Encrypt(message));

            WriteLine("Press any key to continue...");
            ReadKey();
            Run();
        }
Ejemplo n.º 2
0
        static void Main()
        {
            SetWindowSize(LargestWindowWidth - 110, LargestWindowHeight - 10);



            Title = "Cipher";



            start start = new start();

            start.Output();
            start.Name();
            Clear();

            cipher cipher = new cipher();
        }