It sounds crazy but I created an event in the class and tried to raise it without having anyone registering to it. However it would give an exception. Is it necessary to have someone register to it before raising the exception? If so then what are the work arounds?
|
|
yes, an event with no-one registered on it is null. The standard way of firing events is:
Eric Lippert has written a fantastic article on why this pattern is the 'correct' way of firing events |
||||||
|
|
|
Just to add you can use extension methods also.
And use it like this:
|
||||
|
|
|
If an event gets raised and no one is registered to it - does it then make a sound? (sry, would've written a comment, but didn't have enough rep to do so) |
||
|
|
|
|
Yes. If there are no subscribers, the event will be null and you will get a NullReferenceException when you call it. The correct way of doing the check is as thecoop has said, but there is a simple "shortcut":
This causes the event to have a default subscriber that does nothing, and so will not throw an exception if there are subscribers. There is a slight performance overhead of doing this, but it does remove the need to check for nulls. |
||||
|
|
|
The simplest solution to that problem is to declare the event:
In other words, add Now you don't need to write a load of junk each time you raise the event. |
||
|
|
|
|
If no one has subscribed to the event, the event object is
When you have to raise the event, you simply call the |
|||
|
|
|
|
In .NET, events are (by default) handled as multicast delegates. This means that until you assign the first event handler to the event, the event reference will evaluate as This has lead to the typical way to raise an event being:
|
|||
|
|
|
Check for null.
HTH Alex |
||
|
|
