2017년 3월 5일 일요일

[C#] Action and Func Chain

Action act1 = new Action( (x)=> Console.WriteLine("act1") );
            Action act2 = new Action( (x)=> Console.WriteLine("act2") );

            Action act3 = new Action((x) => { } );
            act3 += act1;
            act3 += act2;

            act3(1);
            Console.ReadLine();

댓글 없음:

댓글 쓰기