1 // CS0123: A method or delegate `MainClass.Delegate()' parameters do not match delegate `TestDelegate(bool)' parameters
4 delegate int TestDelegate(bool b
);
6 public class MainClass
{
7 public static int Delegate() {
11 public static void Main() {
12 TestDelegate delegateInstance
= new TestDelegate (Delegate
);