<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0069</ErrorName>
  <Examples>
    <string>// CS0069: Event in interface cannot have add or remove accessors
// Line: 13

using System;

public delegate void FooHandler ();

interface IBar {
	event FooHandler OnFoo {
		add { }
		remove { }
	}
}

</string>
    <string>// CS0069: Event in interface cannot have add or remove accessors
// Line: 11

using System;

public delegate void FooHandler ();

interface IBar&lt;T&gt;
{
	event FooHandler OnFoo {
		remove { }
	}
}

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