48
votes
8answers
5k views
Wrapping StopWatch timing with a delegate or lambda?
I'm writing code like this, doing a little quick and dirty timing:
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
…
38
votes
12answers
3k views
What is a lambda (function)?
Hey guys, I see this term being used a bit, and a Google search didn't quite yield the most clarity, so help me out: for a person without a comp-sci background, what is a lambda in the world of …
28
votes
14answers
1k views
What is this ‘Lambda’ everyone keeps speaking of
What is this 'Lambda' everyone keeps speaking of? A lot of people seem to love it, but all i can gather from it is it is just a way of cramming lots of lines of code into a single expression.
Can …
26
votes
7answers
1k views
Help a C# developer understand: What is a monad?
There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is that monads are a …
20
votes
14answers
1k views
What is the smoothest, most appealing syntax you’ve found for asserting parameter correctness in c#?
A common problem in any language is to assert that parameters sent in to a method meet your requirements, and if they don't, to send nice, informative error messages. This kind of code gets repeated …
20
votes
7answers
1k views
What is a Lambda?
Could someone provide a good description of what a Lambda is? We have a tag for them and they're on the secrets of C# question, but I have yet to find a good definition and explanation of what they …
18
votes
10answers
2k views
Function pointers, Closures, and Lambda
I am just now learning about function pointers and as I was readying the K&R chapter on the subject the first thing that hit me was, "Hey, this is kinda like a closure." I knew this assumption is …
17
votes
7answers
1k views
when not to use lambda expressions
A lot of questions are being answered on stackoverflow, with members specifying how to solve these real world/time problems using lambda expressions.
Are we overusing it, are we considering the …
16
votes
5answers
737 views
What is the difference between a ‘closure’ and a ‘lambda’?
Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused.
And now that we're here, how do they differ from a regular function?
16
votes
10answers
3k views
C# Lambda expression, why should I use this?
I have quickly read the Microsoft Lambda Expression documentation.
I see example that have help me to understand more like this one :
delegate int del(int i);
del myDelegate = x => x * x;
int j = …
14
votes
4answers
12k views
C# List<> OrderBy Alphabetical Order
I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort …
13
votes
14answers
2k views
What is the difference between lambdas and delegates in the .NET Framework?
I get asked this question a lot and I thought I'd solicit some input on how to best describe the difference.
13
votes
13answers
2k views
Coolest C# LINQ/Lambdas trick you’ve ever pulled?
Saw a post about hidden features in C# but not a lot of people have written linq/lambdas example so... I wonder...
What's the coolest (as in the most elegant) use of the C# LINQ and/or …
12
votes
5answers
557 views
C++0x lambdas coding style
I wonder how people are using C++0x lambdas, in terms of coding style. The most interesting question is how thorough to be when writing the capture list. On one hand, the language allows to list …
11
votes
15answers
1k views
Python Lambda - why?
I'm just beginning Python and ran head first into Lambda- which took me a while to figure out. Is lambda one of those 'interesting' language items that in real life should be forgotten? I'm sure …
