Good IL reader

R

Roc

I am looking for a IL reader class/framework to do custom disassembly.
I'm not looking for a tool (so no .NET Reflector et al), rather
something I can use programmatically from my classes. Free is best,
but I'm willing to consider commercial tools.

Any help would be much appreciated.
 
G

Gregory A. Beamer

Roc said:
I am looking for a IL reader class/framework to do custom disassembly.
I'm not looking for a tool (so no .NET Reflector et al), rather
something I can use programmatically from my classes. Free is best,
but I'm willing to consider commercial tools.

Any help would be much appreciated.

I am going to help you by getting you to think outside the box a bit.

1. Reflector can reverse engineer .NET code (to C#, VB, IL)
2. Reflector is coded in .NET

Taking the above two statements, how can you figure out how to reverse
engineer to IL? HMMMM!

Another tool is ILDASM, which I think may also be written in .NET.

--
Peace and Grace,
Greg

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

************************************************
| Think outside the box! |
************************************************
 
M

MarkusSchaber

Hi,

I am looking for a IL reader class/framework to do custom disassembly.
I'm not looking for a tool (so no .NET Reflector et al), rather
something I can use programmatically from my classes. Free is best,
but I'm willing to consider commercial tools.

Any help would be much appreciated.

You could try Cecil: http://www.mono-project.com/Cecil "In simple
English, with Cecil, you can load existing managed assemblies, browse
all the contained types, modify them on the fly and save back to the
disk the modified assembly.".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top