I was working with the Action Delgates in C# in the hope of learning more about them and thinking where they might be useful.
Has anybody used the Action Delgate, and if so why? or could you give some examples where it might be useful?
|
1
|
|||
|
|
|
MSDN says:
Except that, you can use it as a generic delegate that takes 1-3 parameters without returning any value. |
||
|
|
|
Here is a small example that shows the usefulness of the Action delegate
Notice that the foreach method iterates the collection of names and executes the Now if you are using C# 3 you can slick this up a bit with a lambda expression like so:
|
||
|
|
|
|
You can use actions for short event handlers:
|
||
|
|
|
|
For an example of how Action<> is used. Console.WriteLine has a signature that satisifies
Hope this helps |
|||
|
|
|
|
Well one thing you could do is if you have a switch:
And with the might power of actions you can turn that switch into a dictionary:
...
Or you could take this farther:
....
Just a couple of examples. Of course the more obvious use would be Linq extension methods. |
||||
|
|
|
I used the action delegate like this in a project once:
which all it does is store a action(method call) against a type of control so that you can clear all the controls on a form back to there defaults. |
||
|
|
|
I used it as a callback in an event handler. When I raise the event, I pass in a method taking a string a parameter. This is what the raising of the event looks like:
The Method:
The is the class declaration of the event Args:
This way I can call the method passed from the event handler with a some parameter to update the data. I use this to request some information from the user. |
||
|
|