예제 #1
0
        public override bool Process()
        {
            String theReadLine = null;

            Console.Write("Please enter your calcul \n");
            theReadLine = Console.ReadLine();
            Console.Write("You write the following line " + theReadLine + " \n");
            if (!IHM.YorNoDialog("Do You Want to process the Calcul ?"))
            {
                return(false);
            }


            Main_Calcul theCalcul = new Main_Calcul(CreateLine(theReadLine), ref mVarList);

            Program.DebugMessage("Process of the IHM Manual Function\n");


            return(theCalcul.Calculate());
        }