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:
C#
// 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()
{
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: