5 public static int Main ()
7 int s
= Error ("{0} - {0}", "a");
17 s
= Test_C (typeof (C
), null, null);
18 Console
.WriteLine (s
);
25 static public int Error (string format
, params object[] args
)
27 return Format (format
, args
);
30 static int Format (string s
, object o
)
35 static int Format (string s
, params object[] o
)
40 static int Format (string s
, object o
, params object[] o2
)
45 static int Test_A (string s
)
50 static int Test_A (string s
, params object[] o
)
55 static int Test_C (Type t
, params int[] a
)
60 static int Test_C (Type t
, int[] a
, int[] b
)