Esempio n. 1
0
        static void Main(string[] args)
        {
            Console.Title = "Assignment 2";
            var menu = new Menu();

            menu.Start();
        }
Esempio n. 2
0
        public static void Main(string[] args)
        {
            // Skapar en instans samt startar Start() funktionen
            Menu menu = new Menu();

            menu.Start();
        }
Esempio n. 3
0
        ///  <summary>
        /// The method that is called to get everything going.
        ///  </summary>
        static void Main(string[] args)
        {
            Console.Title = "Selection and iteration algorithms";
            Menu menu = new Menu();

            menu.Start();
        }
Esempio n. 4
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();
        }
Esempio n. 5
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();
        }
Esempio n. 6
0
        /// <summary>
        /// The program starts here by creating an object of the class Menu and calling it's start method
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Menu menu = new Menu();

            menu.Start();
        }
Esempio n. 7
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();
 }