摘要:
This is the final part of the series that started with... Callback and Multicast delegatesOne more EventAsynchronous Callback - Way 1 - BeginInvoke > ... 阅读全文
摘要:
By now, I have shown the following usages of delegates...Callback and Multicast delegatesEventsOne more EventAsynchronous Callback - Way 1 - BeginInvoke > EndInvokeAsynchronous Callback - Way 2 - BeginInvoke > AsyncWaitHandle.WaitOne(x) > EndInvoke > AsynWaitHandle.Close()In this part, w 阅读全文
摘要:
In this part of making asynchronous programming with delegates, we will talk about a different way, which is a little better thanWay 1. In the previou... 阅读全文
摘要:
So far, I have discussed aboutCallback, Multicast delegates,Events using delegates, andyet another example of events using delegates. In this post, I ... 阅读全文
摘要:
I was thinking that theprevious post on Events and Delegateswas quite self-explanatory. A couple of days ago, I received an email which said that may be it is not that good as to explain what I want to achieve in life through that event. So, I thought why not write another post on Delegates and Even 阅读全文
摘要:
In myprevious post, I spoke about a few very basic and simple reasons of using delegates - primarilycallback. In this post, I'll talk about creating Events using delegates.I have tried to annotate the class with comments so that it is easy to comprehend. But IMHO, the best way to figure out what 阅读全文
摘要:
I hear a lot of confusion around Delegates in C#, and today I am going to give it shot of explaining the stuff with easy to understand examples. First... 阅读全文