<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0082</ErrorName>
  <Examples>
    <string>// CS0082: A member `Test.get_Value()' is already reserved
// Line: 7

public class Test
{
	public string get_Value () { return null; }
	public string Value {
		get { }
	}
}
</string>
    <string>// CS0082: A member `Test.get_Value()' is already reserved
// Line: 6

public class Test
{
	public string Value {
		set { }
	}
	public string get_Value () { return null; }
}
</string>
    <string>// CS0082: A member `ISample.set_Item(int, int)' is already reserved
// Line: 6

public interface ISample {
        int this[int i] { set; }
        void set_Item (int a, int b);
}
</string>
    <string>// CS0082: A member `Test.set_Item(int, string)' is already reserved
// Line : 6

public class Test
{
	public string this [int i] {
		get { return ""; }
	}
	public void set_Item (int i, string s) { }
}
</string>
    <string>// CS0082: A member `ISample.set_Item(int, int)' is already reserved
// Line: 6

public interface ISample {
        void set_Item (int a, int b);
        int this[int i] { set; }
}
</string>
    <string>// CS0082: A member `ErrorClass.get_Blah(int)' is already reserved
// Line: 8

using System.Runtime.CompilerServices;
class ErrorClass {
	[IndexerName ("Blah")]
	public int this [int a] {
            get { return 1; }
	}
        
        public void get_Blah (int b) {}
	
        public static void Main ()
        {
        }
}
</string>
    <string>// CS0082: A member `I.set_Item(int[], params int[])' is already reserved
// Line : 7

interface I
{
	void set_Item (int[] a, params int[] b);
	int[] this [params int[] ii] { get; }
}
</string>
    <string>// CS0082: A member `Test.get_Value()' is already reserved
// Line: 7

public partial class Test
{
	public string get_Value () { return null; }
}

public partial class Test
{
	public string Value {
		get { }
	}
}
</string>
    <string>// CS0082: A member `Test.add_XX(Test.MyEvent)' is already reserved
// Line: 12

public class Test
{
	public delegate void MyEvent ();
	public event MyEvent XX {
		add { }
		remove { }
	}
        
	public void add_XX (MyEvent e) { return; }
}

</string>
  </Examples>
</ErrorDocumentation>