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!
|
|
Ok, very silly question.
is a lambda representing the same thing as a delegate for
But what is the lambda equivalent of
?? Thanks a lot!
|
|||
|
|
|
|
The nullary lambda equivalent would be |
||
|
|
|
That would be:
Example usage:
|
|||
|
|
|
|
You can just use () if you have no parameters.
|
||
|
|
|
|
The lmabda is:
|
||
|
|