Tagged Questions
19
votes
2answers
281 views
Extension method that extends T - bad practice?
I've read that it is usually bad practice to extend System.Object, which I do agree with.
I am curious, however, if the following would be considered a useful extension method, or is it still bad ...
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 ...
14
votes
6answers
586 views
Why is Func<> created from Expression<Func<>> slower than Func<> declared directly?
Why is a Func<> created from an Expression<Func<>> via .Compile() considerably slower than just using a Func<> declared directly ?
I just changed from using a ...
11
votes
6answers
6k views
What's so great about Func<> delegate?
Sorry if this is basic but I was trying to pick up on .Net 3.5.
Question: Is there anything great about Func<> and it's 5 overloads? From the looks of it, I can still create a similar delgate on ...
8
votes
7answers
492 views
Is Func<in T, out TResult> appropriate to use as a ctor arg when applying Dependency Injection?
Example:
public class BusinessTransactionFactory<T> where T : IBusinessTransaction
{
readonly Func<Type, IBusinessTransaction> _createTransaction;
public ...
8
votes
5answers
358 views
use Func<> (or Action<>) or create own delegate?
Which one is better in, say, parameter type in a method (not related to LINQ).
Apparently Func is better since it's simpler, more descriptive, and if everyone is using this everything will become ...
7
votes
1answer
559 views
Func delegate with ref variable
public object MethodName(ref float y)
{
//method
}
How do I defined a Func delegate for this method?
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
173 views
C# Method that executes a given Method
I am trying to write the following: I would like to write a method "A" which takes as parameter another method "B" as well as an unknown number of parameters for this method B. (params object[] args). ...
4
votes
4answers
398 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;
...
4
votes
2answers
653 views
Func vs Delegate
My morbid curiosity has me wondering why the following fails:
// declared somewhere
public delegate int BinaryOperation(int a, int b);
// ... in a method body
Func<int, int, int> addThem = (x, ...
4
votes
2answers
299 views
Func<> delegate - Clarification
When an array is given:
int[] a={1,3,4,5,67,8,899,56,12,33}
and if i wish to return the even numbers using LINQ
var q=a.where(p=>p%2==0)
If i were to use C#2.0 and strictly func<> delegate ...
3
votes
1answer
77 views
How use C# delegate for calling different methods where each has a different out parameter?
The following question and answer addresses the use of an out parameter in a delegate:
C# Func with out parameter
I need to take this a step further. I have several conversion methods (functions), ...
3
votes
1answer
235 views
Begin and End Invoke in a single extension method properly
I want to double check with others whether this would be the correct way to create an extension method that begins an asynchronous process, and returns a function that when invoked essentially waits ...
2
votes
3answers
119 views
How to determine anonymous function parameters in c#?
Given the following code,
public T Execute<T>(Func<T> methodParam)
{
return methodParam ();
}
public void CallMethodsAnonymously<T>()
{
T result ...
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
52 views
In C#, how can I pass a method from another class using Func<T>?
I have a state machine that needs to call a different method on each object from a List of objects depending on the state I'm in. Basically I'm trying to refactor the code that has a loop in each case ...
2
votes
3answers
205 views
c# - Expression overload as parameter
I'd like to find a way to pass an expression (compiled if possible) as an argument to a function.
The expression will always return the same type. I want to save that expression(function) as a ...
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
1answer
42 views
Is it possible to save pre-compiled delegates that I pass to a method?
I have a method that takes a delegate and runs it on the DbContext.Local entity and if null, tries to find it in the database, as specified below.
public static T ...
1
vote
4answers
52 views
Is it possible to declare generic delegate with no parameters?
I have...
Func<string> del2 = new Func<string>(MyMethod);
and I really want to do..
Func<> del2 = new Func<>(MyMethod);
so the return type of the callback method is void. ...
1
vote
4answers
114 views
Assign C# Lambda Func in Aspx
I have a custom control where I want to expose a method as a property ( e.g. for custom validation );
public Func<bool> ValidateMatrixFunc { get; set; }
then in the page that contains this ...
1
vote
3answers
271 views
Func for 5 arguments
I am working with System.Func but have reached a stumbling block with it.
System.Func<TReturn> // (no arg, with return value)
System.Func<T, TReturn> // (1 arg, with return value)
...
0
votes
1answer
88 views
StructureMap: How to get a named instance within a constructor
Main:
class Program
{
static void Main()
{
new CompositionRoot();
Console.WriteLine("Test");
var consumer = ObjectFactory.GetInstance<Consumer>();
...
0
votes
3answers
141 views
C# delegate Func
I came across a line of code that i can't seem to grasp
Let me explain a little.
What i do understand is that with the following line i am defining a type of delegate with the name "myDelegate". ...
0
votes
0answers
40 views
Sql Command From Func Delegate
How C# generate sql commands from func delegate in linq to sql ?
db.Persons.Where(o=>o.Name=="John") like "select * from Person where Name='John'"
0
votes
2answers
176 views
Casting/Mapping Delegates
I have a method
public List<DTO.User> GetUsers(Func<Domain.User, bool> expression)
{
var users = new List<DTO.User>();
using(UserContext context = new ...
0
votes
2answers
202 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 ...
0
votes
5answers
189 views
Can I set a Func<> function with runtime variables to omit passing them as parameters in C#?
I have a numerical analysis program which for simplicity calculates an algorithm similar to:
y = ax^3 + bx^2 + cx + d;
I calculate the values of a,b,c,d at runtime and would like to pass the ...
-1
votes
2answers
118 views
Lambda\Anonymous Function as a parameter
I'm a very new to C#. Just playing around with it. Not for a real purpose.
void makeOutput( int _param)
{
Console.WriteLine( _param.ToString());
}
//...
// Somewhere in a code
{
makeOutput( ...