Example #1
0
        public static void MainMenu()
        {
            System.Console.WriteLine("Great, so what would You like to do now? \n");
            System.Console.WriteLine("#1 <- Generate quick nickname accoding to Your personalities");
            System.Console.WriteLine("#2 <- Generate random nickname");
            System.Console.WriteLine("#3 <- Generate some password");
            System.Console.WriteLine("#4 <- Exit \n");
            System.Console.WriteLine("What is Your choice: ");
            int choice = int.Parse(Console.ReadLine());

            MessagesHelper.AnimProcess(3);

            PerformAction(choice);
        }