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(); }
/// <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(); }