is there any way how to return lambda from another lambda recursively?
All I want to do is finite state machine, implemented as lambda, which returns lambda implementin
You can have a method which builds and returns an expression tree:
public Expression GetExpression() { }
Also building expression trees in .NET 4.0 has been greatly enhanced.