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 ...
15
votes
6answers
6k views
converting a .net Func<T> to a .net Expression<Func<T>>
Going from a lambda to an Expression is easy using a method call...
public void GimmeExpression(Expression<Func<T>> expression)
{
((MemberExpression)expression.Body).Member.Name; // ...
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 ...
14
votes
8answers
709 views
In few words, what can be said about Func<>
I've been seing Func<> for sometime now, and I've manage to avoid it (for now). But, now it looks like I can't dodge it forever. For instance, I tried Dynamic Linq, but almost everything was in ...
10
votes
4answers
226 views
Convert Func<T, String> to Func<T, bool>
I think my mind is exploding trying to figure out Funcs... If this makes no sense, I apologize, right now it make sense to me but its been a long day already ....
1) Assuming you are given a func ...
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 ...
8
votes
3answers
13k views
C# - How do I define an inline method Func<T> as a parameter?
I've written a simple SessionItem management class to handle all those pesky null checks and insert a default value if none exists. Here is my GetItem method:
public static T GetItem<T>(string ...
7
votes
2answers
136 views
Can I define a method to accept EITHER a Func<T> OR an Expression<Func<T>>?
If I attempt to write two overloads of a method, one accepting an Expression<Func<T>> parameter and another accepting a Func<T>, I will get a compiler error on trying to call the ...
7
votes
1answer
560 views
Func delegate with ref variable
public object MethodName(ref float y)
{
//method
}
How do I defined a Func delegate for this method?
7
votes
4answers
894 views
Explanation of Func
I was wondering if someone could explain what Func<int, string> is and how it is used with some clear examples.
Thanks in advance
6
votes
2answers
80 views
How do you get the properties, operators and values from an Expression<Func<T, bool>> predicate?
Is there any way to pull out the properties, the operator and matching value from an Expression<Func<T>,bool>? Given the following example:
var customers = GetCustomers();
var ...
6
votes
4answers
269 views
C#: Elegant way to wrap method calls
Apologies for the fairly ambiguous title but what I'm trying to achieve is probably better stated in code.
I have a WCF client. When I'm calling methods I would like to wrap each call in some error ...
5
votes
4answers
97 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
5answers
87 views
Linq to Objects ordering by arbitrary number of parameters
I have a list of Func defining an ordering:
var ordering = new List<Func<Person, IComparable>>
{ x => x.Surname, x => x.FirstName };
I can order the results with ...
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
4answers
88 views
Why can't I cast String func(SomeEnum) to a Func<Enum, String>?
I think this has something to do with the whole variance thing, but I don't quite get why this isn't allowed.
I have a method
public void method(Func<Enum, String> func)
And I have a few ...
4
votes
1answer
188 views
What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator?
What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator?
One difference I hav noticed is Type WhereListIterator reflects changes on ...
4
votes
3answers
108 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
6answers
214 views
C#: Func<> instead of methods?
This is a curiosity questions for you all in the know:
Is there any harm/downside to using a Func instead of a method? Simple example:
private static Func<int, int, DBContext, List<T>> ...
4
votes
8answers
361 views
Func<T, TResult> delegate real world uses
I've recently been playing around with the delegate Func<T, TResult> and creating methods that return different instances Func<T, TResult> containing lambda but what I have struggled to ...
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
400 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
300 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
3answers
97 views
Is this overusing extension methods?
I'm looking to make certain functions as generic as possible.
In my MVC applications I have to convert a number of complex IEnumerable objects to SelectLists for dropdown display etc.
At first I ...
3
votes
2answers
164 views
C# - How can I pass a reference to a function that requires an out variable?
public class Foo
{
public void DoFoo()
{
int x;
var coll = TheFunc("bar", out x);
}
public Func<string, int, ICollection<string>> TheFunc { get; set; }
}
...
3
votes
3answers
197 views
C# WCF closing channels and using functions Func<T>
This is the point, I have a WCF service, it is working now. So I begin to work on the client side. And when the application was running, then an exception showed up: timeout. So I began to read, there ...
3
votes
3answers
110 views
Avoid generic arguments
I have the following extension method which asserts that a property (Id) contains a specified attribute (TV):
public static void ShouldHave<T, TV, TT>(this T obj, Expression<Func<T, ...
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 ...
3
votes
2answers
1k views
LINQ to SQL - Group By Day/Week/Month
I have been scratching my head over this one for a while now. Say I make an extension method, to group a list of items by Date, I want to change the possible grouping, So that the results can be ...
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 ...
3
votes
1answer
178 views
Get expression parameter name
I need to get the name of a expression parameter. What i want to do is similar to what FluentNhibernate does with column mapping:
Map(x => x.Name)
From this, i need "Name".
How do I do this?
I ...
3
votes
4answers
279 views
C# method accepting a predicate - does this look ok?
I'd like a method that has the following API:
//get all users with a role of admin
var users = myRepository.GetUsers(u => u.Role == Role.Admin);
Will something like this work?
IList<User> ...
3
votes
3answers
531 views
Pass method, created with reflection, as Func parameter
I've got a method (fyi, I'm using c#), accepting a parameter of type "Func", let's say it's defined as such:
MethodAcceptingFuncParam(Func<bool> thefunction);
I've defined the function to ...
2
votes
5answers
173 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
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
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
1answer
372 views
C# casting an object within lambda
I am currently trying to set a field which I need in business logic which in this case is Lazy.
(yes not the property, it is necessary to set the field)
I get the error that Lazy can not be converted ...
2
votes
6answers
297 views
Can someone explain what the C# “Func<T,T>” does?
I'm reading the Pro MVC 2 book, and there is an example of creating an extension method for the HtmlHelper class.
Here the code example:
public static MvcHtmlString PageLinks(this HtmlHelper html, ...
2
votes
1answer
378 views
Func Invoke, is there a better solution
I've an async downloader class that I want to control with different settings from a service layer.
In the downloader class I've the following setup to control how the downloads should be handled.
...
2
votes
5answers
111 views
Consolidating coding styles: Funcs, private method, single method classes
We currently have 3 devs with, some, conflicting styles and I'm looking for a way to bring peace to the kingdom...
The Coders:
Foo 1: Likes to use Func's & Action's inside public methods. He ...
2
votes
5answers
434 views
Predicates and OrderBy , Func
i understand that predicates are delegate to function which return bool and take generic param , i understand that when i say
mycustomer => mycustomer.fullname == 1
it actually means:
...
2
votes
3answers
475 views
C# ambiguity in Func + extension methods + lambdas
I've been trying to make my way through this article:
http://blogs.msdn.com/wesdyer/archive/2008/01/11/the-marvels-of-monads.aspx
... And something on page 1 made me uncomfortable. In particular, I ...
2
votes
4answers
205 views
How do I apply a String extension to a Func<String>
I have a constructor signature like this
public NavigationLink(Func<String> getName,
Func<UrlHelper, String> getURL,
Func<bool> ...
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
2answers
33 views
Passing a field to a function to sort on that field
I am writing a function with a signature like this where I am sorting the model data among other things:
public MyModel GetModel(IQueryable<Something> query, string sort,
int page, int ...