.Net Reflection and IL

G

Guest

Hi,

I was wondering if I can use the Reflection namespace to list the opcodes of an assembly. I found the Emit namespace which allows generation of IL code, but I want to view the IL code of the assembly. I figured Reflection would be easier than to write a PE parser, but I don't know if it's possible.

Thanks!

Eirik
 
P

Peter Rilling

At least version 1.0 does not support the reading of IL code. You might
want to try the IL Reader for .NET at http://www.aisto.com/roeder/dotnet/.


Eirik A. Herskedal said:
Hi,

I was wondering if I can use the Reflection namespace to list the opcodes
of an assembly. I found the Emit namespace which allows generation of IL
code, but I want to view the IL code of the assembly. I figured Reflection
would be easier than to write a PE parser, but I don't know if it's
possible.
 

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