<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0067</ErrorName>
  <Examples>
    <string>// CS0067: The event `EventTestClass.Elapsed' is never used
// Line: 8
// Compiler options: -warnaserror

using System;

public class EventTestClass : IEventTest
{
	public event EventHandler Elapsed;
}

public interface IEventTest 
{
	event EventHandler Elapsed;
}
</string>
    <string>// CS0067: The event `Foo.OnFoo' is never used
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

class ErrorCS0067 {
	public delegate void FooHandler ();
}

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

</string>
    <string>// CS0067: The event `S.EH' is never used
// Line: 9
// Compiler options: -warnaserror -warn:3

using System;

static class S
{
	public static event EventHandler EH;
}
</string>
    <string>// CS0067: The event `Foo.OnFoo' is never used
// Line: 12
// Compiler options: -warnaserror -warn:3

using System;

class Foo
{
	public event FooHandler OnFoo;
	public delegate void FooHandler ();

	public static void Main ()
	{
	}
}

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