<?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>CS0066</ErrorName>
  <Examples>
    <string>// cs0066.cs : 'System.TypedReference' : event must be of a delegate type 
// Line: 5
public class Sample {        event System.TypedReference 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>