[C#] Delegate 사용 / 콜백 / 델리게이트
2018/10/28 - [개발/C#] - 콜백함수 / Callback 함수 / C# Delegate 위 글에서 설명했던 Delegate를 사용해보자 //1. delegate 선언 delegate int delegateMath(int x, int y); class Program { public static int Plus(int x, int y) { return x + y; } public static int Minus(int x, int y) { return x - y; } static void Main(string[] args) { //2. delegate 생성 delegateMath math = new delegateMath(Plus); //3. delegate 실행 int res = math(5, ..