<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0620</ErrorName>
  <Examples>
    <string>// CS0620: `Indexer.this[int]': indexer return type cannot be `void'
// Line: 5

interface Indexer {
        void this [int i] { set; }
}
</string>
    <string>// CS0620: `PropertyClass.this[int]': indexer return type cannot be `void'
// Line: 5

class PropertyClass {
        public void this [int i] {
        	set {}
        }
}
</string>
  </Examples>
</ErrorDocumentation>