carlosfigueira
carlosfigueira

Reputation: 87308

Is there a tool to disassemble .NET assemblies into Reflection.Emit code?

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

Answers (1)

Noffls
Noffls

Reputation: 5427

There is a plugin for the .NET Reflector: Reflection.Emit Language

Upvotes: 3

Related Questions