Study
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();
댓글 없음:
댓글 쓰기
최근 게시물
이전 게시물
홈
피드 구독하기:
댓글 (Atom)
댓글 없음:
댓글 쓰기