Is there a difference between expression lambda and statement lambda?
If so, what is the difference?
Found this question in the below link but could not understa
lampda expression is an anonymous function that the compiler can either turn into a Func
or an Expression
(inferred by compiler depending on usage).
It is not entirely clear what you mean by "expression lamdba", but if you have heard the phrase in a podcast/webcast or something it is probably either referring to a lambda expression. Or it could be the property Expression.Lambda, which you use to obtain a lambda from an Expression instance.