[Mono-list] Closures and Memoization
Miguel de Icaza
miguel at novell.com
Mon Mar 12 15:36:21 EDT 2007
Hello,
> Has anyone been able to get them working in Mono?
> like in http://blogs.msdn.com/sriram/archive/2006/01/15/lisp_is_sin.aspx
>
> What about the Mono compiler stops the inner closure from working?
Btw, with C# 3 the code there is even prettier (support on Mono's SVN
compiler), you can turn:
return delegate(TParam arg)
into:
return (arg) => {... }
Miguel.
More information about the Mono-list
mailing list