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

using System;

class ErrorCS0069 {
	public delegate void FooHandler ();
	public static void Main () {
	}
}

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

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