Hi! I have an F# quotation that I manipulate (I add object pools everywhere to recycle short lived objects that get created and deleted very often). I would like to run the resulting quotation; for now I have used the F# PowerPack which offers methods to convert a quotation to an expression tree and the to a delegate, which I run. Having no access to the generated code, I was wondering:
-what is the performance of the compiled code? Is there some layer of reflection that is not removed or is it a true compilation?
- can I see the generated code and use .Net Reflector on it?
thanks :)