다음과 같이 public 델리게이트를 정의할 수 있습니다.
public delegate ushort MyDelegate(string[] s, IComparable c);
[가산점] 위의 델리게이트를 사용하는 한 예제를 보이시오. [A] MyFunc과 MyComp가 정의되어 있다는 가정하에...
MyDelegate myDel = new MyDelegate(MyFunc); string[] s = new string[10]; IComparable cmp = new MyComp(); myDel(s, cmp);