1 // CS0123: A method or delegate `X.f1(int, object)' parameters do not match delegate `X.Function(int, int)' parameters
8 public delegate bool Function(int arg1
, int arg2
);
12 Delegate
[] d
= new Delegate
[] {
17 static bool f1 (int a
, object b
)