.Net Reflection and IL

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
Back
Top