cleol
[mcs.git] / errors / cs0111.cs
blob75accf6e109041e0ffdabd00dc751c12a7fd9a03
1 // CS0111: A member `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
2 // Line : 10
4 public class Blah {
6 static public void Foo (int i, int j)
10 static public void Foo (int i, int j)
14 public static void Main ()
16 int i = 1;
17 int j = 2;
19 Foo (i, j);