cs0111.cs 325 B

123456789101112131415161718192021
  1. // cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method `Foo'
  2. // Line : 10
  3. public class Blah {
  4. static public void Foo (int i, int j)
  5. {
  6. }
  7. static public void Foo (int i, int j)
  8. {
  9. }
  10. public static void Main ()
  11. {
  12. int i = 1;
  13. int j = 2;
  14. Foo (i, j);
  15. }
  16. }