Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What CLR/.NET bytecode tools exist? [closed]

I'm well aware of Java tools for manipulating, generating, decompiling JVM bytecode (ASM, cglib, jad, etc). What similar tools exist for the CLR bytecode? Do people do bytecode manipulation for the CLR?

like image 670
Alex Miller Avatar asked Sep 23 '08 20:09

Alex Miller


1 Answers

Reflector is always good, but Mono.Cecil is the best tool you can possibly ask for overall. It's invaluable for manipulating CIL in any way.

like image 52
Serafina Brocious Avatar answered Sep 19 '22 13:09

Serafina Brocious