In C#, are lambda expressions objects? If so, what sort of object are they?
|
|
Lambda expressions themselves only exist in source code. They don't have a type themselves, which is why the compiler always insists they're convert to a specific type. That's why this code doesn't compile:
But this does:
Lambda expressions are always converted to either a delegate type or an expression tree type. Similarly, anonymous methods are always converted to a delegate type. |
||
|
|
|
Lambda operations in Linq build what are called expression trees. You can read a bit about it here. |
||||
|
|
|
Yes, lambda expressions are converted to either a |
||
|
|
|
|
It's an anonymous function that has to conform to some kind of delegate. msdn So, in fact, they're instances of some delegate type. |
||||
|
