<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0111</ErrorName>
  <Examples>
    <string>// CS0111: A member `Blah.I.M()' is already defined. Rename this member or use different parameter types
// Line : 12

public interface I
{
    void M ();
}

public class Blah: I
{
        void I.M () {}
        void I.M () {}
}
</string>
    <string>// CS0111: A member `T.T()' is already defined. Rename this member or use different parameter types
// Line: 9

partial class T {
	T () {}
}

partial class T {
	T () {}
}
</string>
    <string>// CS0111: A member `C.this[params int[]]' is already defined. Rename this member or use different parameter types
// Line: 6

class C
{
    bool this [int[] i] { get { return true; } }
    bool this [params int[] i] { get { return false; } }
}
</string>
    <string>// CS0111: A member `ISample.Blah()' is already defined. Rename this member or use different parameter types
// Line: 6

public interface ISample {
        int Blah ();
        int Blah ();
}
</string>
    <string>// CS0111: A member `T.T()' is already defined. Rename this member or use different parameter types
// Line : 6

class T {
	T () {}
	T () {}

	public static void Main ()
	{
	}
}
</string>
    <string>// CS0111: A member `T.T()' is already defined. Rename this member or use different parameter types
// Line : 6

class T {
	static T () {}
	static T () {}

	public static void Main ()
	{
	}
}
</string>
    <string>// CS0111: A member `C.this[int]' is already defined. Rename this member or use different parameter types
// Line: 6

class C
{
    bool this [int i] { get { return false; } }
    bool this [int i] { get { return true; } }
}
</string>
    <string>// CS0111: A member `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
// Line : 10

public class Blah {

	static public void Foo (int i, int j)
	{
	}

	static public void Foo (int i, int j)
	{
	}

	public static void Main ()
	{
		int i = 1;
		int j = 2;

		Foo (i, j);
	}
}
</string>
  </Examples>
</ErrorDocumentation>