Beispiel #1
0
        public static void Main(string[] args)
        {
            Game.Start();

            Console.Read();
        }
        /// <summary>
        /// This method is used to initialise the applicaiton.
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Game obj = new Game(); // Object to call the non static memeber of the class Game.

            obj.Start();           //Method call
        }