Tagged Questions

0
votes
3answers
165 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> …
6
votes
10answers
342 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 …
2
votes
3answers
212 views

Does C have __func__ functionality for names of the arguments of a function?

Does the "C" standard support something similar to __func__ for the function arguments' names?
5
votes
4answers
318 views

Explanation of Func

Hi all, 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
5answers
933 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; // …
2
votes
3answers
1k views

What’s so great about Func<> delegate?

Hi, 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 …
4
votes
3answers
3k 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 …