FUNC1 C# 미리 정의된 Delegate에 대해서 Action Delegate namespace System { // // 요약: // Encapsulates a method that has no parameters and does not return a value. public delegate void Action(); } Action delegate는 하나 이상의 파라미터를 받아들이고, 리턴 값이 없는(void) 함수에 사용되는 delegate이다. 파라미터의 수에 따라 1개부터 16개의 파라미터까지 받아들이는 delegate가 있다. static void Main(string[] args) { // 문자열을 인자로 받는 Action 선언 Action messageAction = (s => Console.WriteLine(s)); // 인자가 0개면.. 2023. 4. 26. 이전 1 다음