Lambda returning another lambda

Posted by Yossarian on Stack Overflow See other posts from Stack Overflow or by Yossarian
Published on 2010-05-15T14:21:48Z Indexed on 2010/05/15 14:24 UTC
Read the original article Hit count: 581

Filed under:
|

Hello, 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 implementing another state (or null).

nesting Func<> won't work as I want.

C#, .NET 3.5

© Stack Overflow or respective owner

Related posts about lambda

Related posts about c#