<?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>CS0548</ErrorName>
  <Examples>
    <string>// cs0548-2.cs: `PropertyInterface.Value': property or indexer must have at least one accessor
// Line: 5

interface PropertyInterface {
    int Value {}
}

</string>
    <string>// cs0548-3.cs: `PropertyInterface.this[long]': property or indexer must have at least one accessor
// Line: 5

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

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

class IndexerClass {
        public int this [bool b] { }
}
</string>
    <string>// cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor
// Line: 5

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