Is is possible to "disassemble" type created at runtime?
I'm using .NET Reflector a lot. Now I would like to "disassemble" a type which I think is created at runtime - I would like to see code of dynamic proxy generated by Entity framework 4. Is it possi开发者_开发问答ble somehow?
have a look at this post: Is it possible to save a dynamic assembly to disk?
This will allow you to disassemble method bodies. I use it when debugging Expressions.
http://blogs.msdn.com/b/haibo_luo/archive/2006/11/16/take-two-il-visualizer.aspx
精彩评论