Compiler Error CS0065
'event' : event property must have both add and remove accessors
An event that is not a field must have both access methods.
The following sample generates CS0065:
// CS0065.cs
using System;
public delegate void Eventhandler(object sender, int e);
public class MyClass
{
public event EventHandler Click // CS0065,
{
// to fix, uncomment the add and remove definitions
/*
add
{
Click += value;
}
remove
{
Click -= value;
}
*/
}
public static void Main()
{
}
}