I have a question about Routed Events, I see in some documentation that when we define our own custom events, we add and remove handlers to it using the following code:
public event RoutedEventHandler CustomClick
{
add { AddHandler(CustomClickEvent, value); }
remove { RemoveHandler(CustomClickEvent, value); }
}
But my point is that this is neither looking like a Constructor syntax, nor a Property initialization syntax! also it is not a property get/set syntax (although it looks similar to that). I have read detailed C# documentation, but I don't see what kind of construct is this. Only in documentation about custom RoutedEvents, i see this code, but in normal C# tutorial/primer, I never see that this is a legal language construct. Can anybody explain to me this? or point me to a good documentation explaining this?
Thanks in advance.
That's a syntax that's reserved for events in C#, see also here. To quote: