<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0547</ErrorName>
  <Examples>
    <string>// cs0547.cs: 'Property' : property or indexer cannot have void type// Line: 5
interface Interface {
        void Property { get; }
}



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

class PropertyClass {
        public void Value { get {}
        }
}


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