Tagged Questions
15
votes
10answers
4k views
How do you use Func<> and Action<> when designing applications?
All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples where they solve ...
5
votes
4answers
95 views
C# Action<> with Func<> parameter
I have the following method that I can't figure out correct syntax to call:
public T GetAndProcessDependants<C>(Func<object> aquire,
Action<IEnumerable<C>, Func<C, ...
5
votes
2answers
1k views
C# Action and Func parameter overloads
I need a method that takes an Action (or a Func), but the Action has a mixed number of parameters. What is the most straight forward and compact way to implement these overloads:
public void ...
4
votes
3answers
107 views
How can I pass a void returning extension method to dynamic returning extension method?
I want to pass an extension method that returns void as a parameter to another extension method that returns dynamic.
public static void AddTo(this Object entity, Object parent)
{
...
4
votes
4answers
397 views
Declare delegate manually, use Func<T> or Action<T>?
today I was thinking about declaring this:
private delegate double ChangeListAction(string param1, int number);
but why not use this:
private Func<string, int, double> ChangeListAction;
...
3
votes
3answers
102 views
C#, Action/Func vs Methods, what's the point?
I know how to use Action and Func in .Net, but every single time I start to, the exact same solution can be achieved with a regular old Method that I call instead.
This excludes when an Action or ...
3
votes
4answers
200 views
Encapsulating Action<T> and Func<T>?
I'm trying to make a design for some sort of IExecutable interface. I will not get into details, but the point is that I have several Actions that need to be executed from a base class. They may take ...
2
votes
5answers
172 views
Why is Action/Func better than a regular Method in .Net?
I much prefer using an Action or a Func if I need a quick reusable piece of code, however others on my team don't like them or understand them.
At the moment my only real argument is about preference ...
2
votes
3answers
125 views
Is it bad practice to use Action and Func all the time instead of making corresponding delegates?
A lot of time when creating simple events in my program that other classes can subscribe to instead of making a delegate and creating an event from the delegate I just create the event with either ...
2
votes
2answers
305 views
How can I pass a mouse-click method as a parameter?
I want to make an extension method which fills a stackpanel with buttons.
In order to do this I have to pass in a mouse-click-handler.
What type does the mouseClickHandler parameter have to be here?
...
1
vote
3answers
306 views
System.Action<T> as EventHandler
What believe you from using the delegates System.Action or System.Func as EventDelegates instead of the classic EventHandler patterns. Will I therefore run into problems?
private bool disposed;
...
1
vote
1answer
550 views
Calling Begin/EndInvoke on Action and Func in Silverlight
Does anyone know why I can't call BeginInvoke / EndInvoke on Action and Func delegates in my Silverlight app? I keep getting a NotSupportedException. Is there a workaround?
1
vote
3answers
2k views
How to convert System.Linq.Enumerable.WhereListIterator<int> to List<int>?
In the below example, how can I easily convert eventScores to List<int> so that I can use it as a parameter for prettyPrint?
Console.WriteLine("Example of LINQ's Where:");
List<int> ...
0
votes
1answer
120 views
Good way to Invoke in Action method
How do i Invoke items so the TestAction do write out "s.Hello"? Right now i don't do anything, it jumps over the "action = s.." line.
Or is the another way to do this? Since i don't want to return ...
0
votes
2answers
199 views
How do i refactor this code by using Action<t> or Func<t> delegates
I have a sample program, which needs to execute 3 methods in a particular order.
And after executing each method, should do error handling. Now i did this in a normal fashion, w/o using delegates like ...