How to access IL code using System.Reflection

  • Thread starter Thread starter Test1000
  • Start date Start date
T

Test1000

Hello,

I want to know how I can access the IL code using
System.Reflection. I don't want to use any tools like
reflector etc because I want to programmatically access
the IL code.

Thanks,
 
I do not think that reflection allows access to the IL instructions.
Programs like Reflector process the bytes directly in the assembly.
 
Back
Top