vote up 4 vote down star

Ok, very silly question.

x => x * 2

is a lambda representing the same thing as a delegate for

int Foo(x) { return x * 2; }

But what is the lambda equivalent of

int Bar() { return 2; }

??

Thanks a lot!

flag

4 Answers

vote up 11 vote down check

The nullary lambda equivalent would be () => 2.

link|flag
Damn, that was fast :) Thanks everyone! – Luk Oct 2 at 12:37
vote up 7 vote down

That would be:

() => 2

Example usage:

var list = new List<int>(Enumerable.Range(0, 10));
Func<int> x = () => 2;
list.ForEach(i => Console.WriteLine(x() * i));
link|flag
vote up 6 vote down

You can just use () if you have no parameters.

() => 2;
link|flag
vote up 1 vote down

The lmabda is:

() => 2
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.