<?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>CS0066</ErrorName>
  <Examples>
    <string>// cs0066-2.cs: `Sample.reference': event must be of a delegate type
// Line: 5

public class Sample {        
	event object reference;
}</string>
    <string>// cs0066.cs: `Button.Click': event must be of a delegate type
// Line : 10

using System;

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

public class Button {

	public event Blah Click;

	public void Reset ()
	{
		Click = null;
	}
}

public class Blah {

	public static void Main ()
	{
		Blah b = new Blah ();
	}
	
}
</string>
  </Examples>
</ErrorDocumentation>