Reputation: 87308
I'm starting to look into dynamically created assemblies using Reflection.Emit, and I'm wondering if there is any tool which can disassembly an existing code into the instructions required to emit it using Reflection.Emit. ildasm / Reflector can give me the IL code for a module and I can use them as a "template" for coding with System.Reflection.Emit classes to "copy" it, but I was wondering if there is any tool which does this extra step of creating the ref.emit instructions to make my learning easier.
Upvotes: 1
Views: 996