<?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>CS0274</ErrorName>
  <Examples>
    <string>// cs0274.cs: `Error0274.Message': Cannot specify accessibility modifiers for both accessors of the property or indexer
// Line: 7
// Compiler options: -t:library

 class Error0274 
 {
	 protected internal string Message {
		 protected get {
			 return "Hi";
		 }
		 internal set {
		 }
	 }

 }

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