<?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>CS0609</ErrorName>
  <Examples>
    <string>// cs0609.cs: Cannot set the `IndexerName' attribute on an indexer marked override
// Line: 15

using System.Runtime.CompilerServices;

class BaseClass {
        protected virtual bool this[int index] {
                get {
                        return true;
                }
        }
}

class DerivedClass: BaseClass {
        [IndexerName("Error")]
        protected override bool this[int index] {
                get {
                        return false;
                }
        }
}

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