<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0548</ErrorName>
  <Examples>
    <string>// CS0548: `PropertyInterface.Value': property or indexer must have at least one accessor
// Line: 5

interface PropertyInterface {
    int Value {}
}

</string>
    <string>// CS0548: `IndexerClass.this[bool]': property or indexer must have at least one accessor
// Line: 5

class IndexerClass {
        public int this [bool b] { }
}
</string>
    <string>// CS0548: `PropertyInterface.this[long]': property or indexer must have at least one accessor
// Line: 5

interface PropertyInterface {     
	int this [long l] {}
}

</string>
    <string>// CS0548: `PropertyClass.Value': property or indexer must have at least one accessor
// Line: 5

class PropertyClass {
        public int Value {
        }
}
</string>
  </Examples>
</ErrorDocumentation>