コード例 #1
0
ファイル: MainProgram.cs プロジェクト: fnjav/Assignments
        static void Main(string[] args)
        {
            Console.Title = "Assignment 2";
            var menu = new Menu();

            menu.Start();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: alexandermasud/C-Sharp
        public static void Main(string[] args)
        {
            // Skapar en instans samt startar Start() funktionen
            Menu menu = new Menu();

            menu.Start();
        }
コード例 #3
0
ファイル: MainProgram.cs プロジェクト: Nethakaaru/CSharp-A2
        ///  <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();
        }
コード例 #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();
        }
コード例 #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();
        }
コード例 #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();
        }
コード例 #7
0
ファイル: MainProgram.cs プロジェクト: alfjo000/Assignment2
 /// <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();
 }