1 // CS0123: A method or delegate `TestDelegateA(bool)' parameters do not match delegate `TestDelegateB(int)' parameters
4 delegate int TestDelegateA (bool b
);
5 delegate int TestDelegateB (int b
);
9 public static int Delegate(bool b
)
14 public static void Main()
16 TestDelegateA a
= new TestDelegateA (Delegate
);
17 TestDelegateB b
= new TestDelegateB (a
);