Пример #1
0
        static void Main(string[] args)
        {
            // Creates an object of Menu.cs and calls its main method to initialize the program

            Menu menu = new Menu();

            // calling Start method of the Menu.cs
            menu.Start();

            // make the window wait till the execution is competed

            Console.ReadLine();
        }
Пример #2
0
 /// <summary>
 /// This is the main class to start the console application
 /// </summary>
 /// <param name="args"></param>
 static void Main(string[] args)
 {
     Menu M = new Menu();
     M.Start();
 }