Ejemplo n.º 1
0
 //        public static void Main (string[] args)
 //        {
 //            WhatINeedToDo d1 = new WhatINeedToDo (IhaveToDoThis);
 //            WhatINeedToDo d2 = new WhatINeedToDo (IhaveToDoThis1);
 //            WhatINeedToDo md = d1;
 //            md += d2;
 //
 //            MainClass c = new MainClass ();
 //            MathTest mathTest = new MathTest ();
 //            mathTest.Add (2, 5, c.IhaveToDoThis);
 //            Console.ReadLine ();
 //        }
 public static void Main(string[] args)
 {
     MathTest m = new MathTest ();
     m.OnMathEnd += (object sender, MathEventArgs e) => {
         Console.WriteLine(e.Result.ToString());
     };
     m.Diff (10,3);
     Console.ReadLine ();
 }
Ejemplo n.º 2
0
//		public static void Main (string[] args)
//		{
//			WhatINeedToDo d1 = new WhatINeedToDo (IhaveToDoThis);
//			WhatINeedToDo d2 = new WhatINeedToDo (IhaveToDoThis1);
//			WhatINeedToDo md = d1;
//			md += d2;
//
//			MainClass c = new MainClass ();
//			MathTest mathTest = new MathTest ();
//			mathTest.Add (2, 5, c.IhaveToDoThis);
//			Console.ReadLine ();
//		}

        public static void Main(string[] args)
        {
            MathTest m = new MathTest();

            m.OnMathEnd += (object sender, MathEventArgs e) => {
                Console.WriteLine(e.Result.ToString());
            };
            m.Diff(10, 3);
            Console.ReadLine();
        }