Ejemplo n.º 1
0
        /// <summary>
        /// This method is the entry point of the application
        /// </summary>
        /// <param name="args"></param>
        static private void Main(string[] args)
        {
            mathLib = new MathLib();

            do
            {
                mathRequest = AskForUserInput();
                mathLib.ExecuteRequest(mathRequest);
                Console.WriteLine("Your request                : " + mathRequest.ToString() + "\r\n");

                AskUserToContinue();
            }while (true);
        }