<?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>CS0065</ErrorName>
  <Examples>
    <string>// cs0065.cs: `EventClass.handler': event property must have both add and remove accessors
// Line : 9

using System;

public delegate void EventHandler (object sender, EventArgs e);

public class EventClass {
        event EventHandler handler { add; }
}

public class MainClass {
	public static void Main () {}
}
</string>
  </Examples>
</ErrorDocumentation>