728x90 반응형 action func predicate1 [C#] Action, Func, Predicate 제네릭 대리자(델리게이트; Delegate)와 매개변수에 메서드 전달 닷넷 API에 내장된 제네릭 대리자인 Action, Func, Predicate를 정리해보자 대리자요약Action반환값이 없는 메서드를 대신 호출Func매개변수와 반환값이 있는 메서드를 대신 호출Predicate매개변수에 대한 bool 값을 반환하는 메서드를 대신 호출 Action 대리자반환값이 없는 메서드를 대신 호출하는 제네릭 대리자로 주로 출력 등과 엮어서 사용할 수 있다. class DelegatePractice{ static void Main() { //Action 대리자 생성 : 반환값이 없으므로 인자는 모두 매개변수 Action printf = Console.Write; Action printAdd = (int a, int b) => Con.. 2024. 4. 26. 이전 1 다음 728x90 반응형