<?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>CS0547</ErrorName>
  <Examples>
    <string>// CS0547: `PropertyInterface.Value': property or indexer cannot have void type
// Line: 5

interface PropertyInterface {
        void Value { get; }
}

</string>
    <string>// CS0547: `PropertyClass.Value': property or indexer cannot have void type
// Line: 5

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