C# Delegate
Delegate란 대리자란 뜻으로 메서드를 참조하는 변수이다. 이러한 Delegate는 메서드를 대신 호출하여 실행시킬 수 있고 여러 메서드를 참조할수도 있다. 일반적인 Delegate //////////////////////////////////////////////////////// Alert Class class Class1 { public delegate void Alert(string text); public void notice(string text) { Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("notice : " + text); } public void error(string text) { Console.Foregr..
2021.01.25