1 // CS0407: A method or delegate `int TestDelegateA(bool)' return type does not match delegate `bool TestDelegateB(bool)' return type
4 delegate int TestDelegateA (bool b
);
5 delegate bool TestDelegateB (bool 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
);