1
vote
Strange behavior when using lambda expression on WPF buttons click event.
Unintuitive, huh? The reason is because of how lambda expressions capture variables from outside the expression.
When the for loop runs for the last time, the variable a is se …
26
votes
2
votes
C# How to create extension methods with lambda expressions
Your method is implicitly using lambda expressions already.
When you say
trade.TradeTime >= startDate
What you're really saying is "given a Trade …
5
votes
How to ‘select new’ inside Linq lamda expression?
var newpeople= _rep.GetPeople().Where(p=>p.personID)
.Select(p => new KindoFPerson...id=p.id etc)
Note the new "p =>".
…
5
votes
If statement within Lambda function?
You could move the "if" statement inside the lambda function safely, if you preferred:
Func<ErrorType, XElement> recursiveGenerator = null;
recursiveGenerator = (error =>
…
1
vote
How to format lambda expressions and anonymous methods for maximum readibility?
Sorter.Filter(array, a => a.IsOK);
Sorter.SortBy(array, (a, b) => a > b);
Collection.Apply(array, (a) => a * a, // i like lining things up
(x, y, …
1
vote
What does “=>” mean?
It's syntax to declare an anonymous function, known in C# as a "lambda expression."
For example, (int p) => p * 2 represents a function that takes an integer and multiplies …
6
votes
How do predicate parameters work syntactically in C# ?
If you overloaded the ">" operator to return some kind of predicate object on your special "SuperDatabaseMapField" type, you could do such things.
That said, it …
