<?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>CS0067</ErrorName>
  <Examples>
    <string>// cs0067.cs: The event is never used.
// Line: 11

using System;

class ErrorCS0067 {
	public delegate void FooHandler ();
}

class Foo {
	public event ErrorCS0067.FooHandler OnFoo;
	
	public static void Main () {
	}
}

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