<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1715</ErrorName>
  <Examples>
    <string>// CS1715: `B.Foo': type must be `int' to match overridden member `A.Foo'
// Line: 11

public abstract class A
{
	public abstract ref int Foo { get; }
}

public class B : A
{
	public override ref long Foo {
		get {
			throw null;
		}
	}
}</string>
    <string>// CS1715: `DerivedClass.Prop': type must be `System.EventHandler' to match overridden member `BaseClass.Prop'
// Line: 9

using System;

class BaseClass {
        protected virtual event EventHandler Prop;
}

delegate void TestD ();

class DerivedClass: BaseClass {
        protected override event TestD Prop;
}



</string>
    <string>// CS1715: `DerivedClass.Prop': type must be `bool' to match overridden member `BaseClass.Prop'
// Line: 9

class BaseClass {
        protected virtual bool Prop { set {} }
}

class DerivedClass: BaseClass {
        protected override int Prop { set {} }
}



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