예제 #1
0
        private static void Example1()
        {
            MathService mathService = new MathService();

            //mathService.OutBoundDelegate += (result) => Console.WriteLine("Result = " + result);
            //mathService.OutBoundDelegate = delegate(double result) { Console.WriteLine("Result = " + result); };
            /*-> Bu Bildiğin event*/
            mathService.OutBoundDelegate = OnOutboundDelegate;
            mathService.MathDelegate(3, 4);
            //Console.WriteLine(result);
        }
예제 #2
0
        private static void Example2()
        {
            MathService mathService = new MathService();

            mathService.OutboundEvent += OnOutboundDelegate;
        }