7 Console
.WriteLine ("Got int: {0}", i
);
10 void foo (string message
)
12 throw new ApplicationException ();
15 static void foo_static (long l
)
17 Console
.WriteLine ("Got static long: {0}", l
);
20 static int MethodBest (short d
)
25 static int MethodBest (dynamic d
)
37 public static int Main ()
41 if (MethodBest (1) != 1)