コード例 #1
0
ファイル: Program.cs プロジェクト: bargross/Ciphers
        public static void Main()
        {
            var storage = CLICommandMessageGenerator.ConstructMessage();

            storage.Exit = false;

            while (!storage.Exit)
            {
                CLICommandMessageGenerator.ConstructMessage(storage.ChosenCipher, storage);
                CLICommand.Execute(storage.LastCommand, storage);
            }
        }