How can we call event handler asynchronously for an event
Is there a way to subscribe to an event and handle it asynchronously using the event+=EventHandler syntax or is there any workaround to ac开发者_如何转开发hieve it
The event/delegate system calls each of the subscribed event handles synchronously on the thread the fires the event. To make the event handler processing be done asynchrounously, it has to be part of the function that you subscribe to the event.
精彩评论