What are your usage of delegates in C#?
|
closed as not constructive by Will♦ Oct 11 '12 at 12:57
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Now that we have lambda expressions and anonymous methods in C#, I use delegates much more. In C# 1, where you always had to have a separate method to implement the logic, using a delegate often didn't make sense. These days I use delegates for:
|
|||||||||||||||||||||
|
|
Delegates are very useful for many purposes. One such purpose is to use them for filtering sequences of data. In this instance you would use a predicate delegate which accepts one argument and returns true or false depending on the implementation of the delegate itself. Here is a silly example - I am sure you can extrapolate something more useful out of this:
|
|||||||||
|
|
You can use delegates to declare function-typed variables and parameters. Example Consider the "resource borrowing" pattern. You want to control the creation and cleanup of a resource, while allowing client code to "borrow" the resource in between. This declares a delegate type.
Any method matching this signature can be used to instantiate a delegate of this type. In C# 2.0, this can be done implicitly, simply by using method's name, as well as by using anonymous methods. This method uses the type as a parameter. Note the delegate's invocation.
The function can be called with an anonymous method as follows. Note that the anonymous method can use variables declared outside of itself. This is extremely handy (although the example is a little contrived).
|
|||
|
|
|
Found another interesting answer:
Source: LosTechies Just like LINQ is doing. |
|||
|
|
|
Delegates can often be used in place of an interface with one method, a common example of this would be the observer pattern. In other languages if you want to receive a notification that something has happened you might define something like:
In C# this is more commonly expressed using events, where the handler is a delegate, for example:
Another great place to use delegates if when you have to pass a predicate into a function, for example when selecting a set of items from a list:
The above is an example of the lambda syntax, which could also have been written as follows:
Another place where it can be useful to use delegates is to register factory functions, for example:
I hope this helps! |
|||
|
|
|
A slightly different use is to speed up reflection; i.e. instead of using reflection each time, you can use With |
||||
|
|
|
Delegates are used any time you use events - that's the mechanism by which they work. In addition, delegates are very useful for things such as using LINQ queries. For example, many LINQ queries take a delegate (often |
|||
|
|
|
I'm coming in on this really late but I was having trouble figuring out the purpose of delegates today and wrote two simple programs that give the same output that I think explains their purpose well. NoDelegates.cs
Delegates.cs
|
|||||
|
|
|
An example might be as seen here. You have a method to process an object that meets certain requirements. However, you want to be able to process the object in multiple ways. Instead of having to create separate methods, you can simply assign a matching method that processes the object to a delegate and pass the delegate to the method that selects the objects. That way, you can assign different methods to the one selector method. I tried to make this easily understandable. |
||||
|
|
|
I use delegates to communicate with threads. For example, I might have a win forms app which downloads a file. The app starts a worker thread to do the download (which prevents the GUI from locking up). The worker thread uses delegates to send status messages (eg download progress) back to the main program, so that the GUI can update the status bar. |
|||
|
|
|
The first line of usage is to replace the Observer/Observable (events) pattern. The second, a nice elegant version of the Strategy pattern. Various other usages can be gathered, though more esoteric than these first two I think. |
|||
|
|
|
I've used it for Invoking GUI stuff from separate threads. Here's a link to an example. |
|||||
|
|
Any time you want to encapsulate behavior, but invoke it in a uniform way. Event Handlers, call-back functions, etc. You can accomplish similar things using Interfaces and casts, but sometimes, behavior isn't necessarily tied to a type or object. Sometimes you just have behavior you need to encapsulate. |
|||
|
|
|
Lazy parameter initialization! Besides all previous answers (strategy pattern, observer pattern, etc), delegates allow you to handle lazy initialization of parameters. For example, suppose you have a function Download() which takes quite a lot of time and returns a certain DownloadedObject. This object is consumed by a Storage depending on a certain Conditions. Typically, you would:
However, with delegates (more precisely, lambdas) you can do the following, by changing the signature of store so that it receives a Condition and a Func<Item,DownloadedObject> and use it like this:
Therefore, storage will only evaluate the delegate if necessary, executing download depending on Conditions. |
|||||||||
|
|
The comparison param in In Array.Sort(T[] array, Comparison comparison), List.Sort(Comparison comparison), etc |
|||
|
|
|
This question seems to be a dupe of this one. However, there's a good tutorial on MSDN that you should read. |
|||
|
|
|
As far as I know, delegates can be converted to function pointers. This makes life MUCH easier when interoperating with native code that takes function pointers, as they can effectively be object-orientated, even though the original programmer didn't make any provision for that to happen. |
|||
|
|
|
Delegate's are used to call a method by it's reference. For example:
|
||||
|
|