<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0273</ErrorName>
  <Examples>
    <string>// CS0273: The accessibility modifier of the `Error0273.Message.get' accessor must be more restrictive than the modifier of the property or indexer `Error0273.Message'
// Line: 8
// Compiler options: -t:library

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

 }

</string>
    <string>// CS0273: The accessibility modifier of the `C.S2.set' accessor must be more restrictive than the modifier of the property or indexer `C.S2'
// Line: 7
// Compiler options: -langversion:7.2

 class C
 {
	private string S2 { get; private protected set; }
 }

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