<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0271</ErrorName>
  <Examples>
    <string>// CS0271: The property or indexer `Test.A.B' cannot be used in this context because the get accessor is inaccessible
// Line: 17

using System;

public class Test
{
	private class A
	{
		public string B { protected get; set; }
	}
	
	static void Main ()
	{
		A a = new A ();
		a.B = "foo";
		string b = a.B;
	}
}
</string>
    <string>// CS0271: The property or indexer `P.Prop' cannot be used in this context because the get accessor is inaccessible
// Line: 19

class P
{
    public static int Prop
    {
	private get {
	    return 4;
	}
	set {}
    }
}

public class C
{
    public static int Main ()
    {
	return P.Prop;
    }
}</string>
  </Examples>
</ErrorDocumentation>