<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1057</ErrorName>
  <Examples>
    <string>// CS1057: `B.E': Static classes cannot contain protected members
// Line: 6

public static class B
{
	protected class E {}
}
</string>
    <string>// CS1057: `S.P.set': Static classes cannot contain protected members
// Line: 6

static class S
{
	public static int P {
		get;
		protected set;
	}
}
</string>
    <string>// cs1057.cs: `B._a': Static classes cannot contain protected members
// Line: 6

public static class B
{
	protected static object _a = null;
		    
}
</string>
  </Examples>
</ErrorDocumentation>