﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0115</ErrorName>
  <Examples>
    <string>// cs0115.cs: 'X.this[int]': no suitable method found to override
// Line: 5

class X {
	public override long this [int i] {
            set { }
	}
}
</string>
    <string>// cs0115.cs: 'X.Bla()': no suitable method found to override
// Line: 9

class X {
	public override void Bla ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>