Tagged Questions

19
votes
2answers
280 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 ...
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 ...
3
votes
1answer
75 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
109 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, ...
2
votes
3answers
474 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 ...
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
5answers
350 views

C# Passing an array of Func<T, List<myClass>> to a method

My first (and really horrible post) is below. I try to do a complete example what I want to get. I hope this will be left explained a bit better. using System; using System.Collections.Generic; ...
0
votes
0answers
103 views

Using RhinoMocks to test a method call with func<T, U> parameter [closed]

Possible Duplicate: unit test with lambda fail using rhino mock I've got a method with the following signature: U GetGroupData<T, U>(string cacheKey, Func<T, U> func) ...
0
votes
2answers
128 views

Method to return a generic type when passing in a delegate as a parameter

I'm trying to 'genericize' some code we have spattered around our system. I want to: return a generic type, pass in some kind of delegate containing the method to be called. I'm pretty new to ...
0
votes
3answers
120 views

Using Generic with Func as a parameter

My code is simply: public override C Calculator<C>(Team[] teams, Func<Team, C> calculatorFunc) { return teams.Average(calculatorFunc); } I get this error: Error ...