What CLR/.NET bytecode tools exist? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:56:56Z http://stackoverflow.com/feeds/question/123690 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist 3 What CLR/.NET bytecode tools exist? Alex Miller 2008-09-23T20:37:31Z 2008-12-18T16:34:26Z <p>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? </p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist/123697#123697 4 Answer by Rich B for What CLR/.NET bytecode tools exist? Rich B 2008-09-23T20:38:19Z 2008-09-23T20:38:19Z <p><a href="http://msdn.microsoft.com/en-us/library/f7dy01k1(VS.80).aspx" rel="nofollow">ILDASM</a> and <a href="http://www.red-gate.com/products/reflector/index.htm" rel="nofollow">Reflector</a> come to mind.</p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist/123707#123707 10 Answer by Cody Brocious for What CLR/.NET bytecode tools exist? Cody Brocious 2008-09-23T20:39:30Z 2008-09-23T20:39:30Z <p>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.</p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist/123739#123739 4 Answer by therealhoff for What CLR/.NET bytecode tools exist? therealhoff 2008-09-23T20:43:42Z 2008-09-23T20:43:42Z <p>Bytecode is a binary format. .NET assemblies work pretty different in terms of how they store the execution instructions.</p> <p>Instead of compiling down to a bytecode-like structure, .NET languages are compiled into an Intermediate Language (in fact, it's called just that--IL).</p> <p>This is a human readable language that looks sorta like an object-oriented version of assembler.</p> <p>So in terms of examining or manipulating the IL for individual assemblies, tools like Reflector and ILDASM allow you to conveniently view the IL for any assembly.</p> <p>Manipulation is a bit different, I'd suggest taking a look at some of the AOP tools in the .NET space. I'd also suggest taking a look at Phoenix, which is a compiler project that MS has in the works. It has some really cool post-compile manipulation features.</p> <p>If you want to know more about the .NET AOP tools, I'd suggest opening another question (that's a whole other can of worms).</p> <p>There are also several books that will teach you the ins and outs of IL. It's not a very complicated language to learn.</p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist/378419#378419 5 Answer by Sun Liwen for What CLR/.NET bytecode tools exist? Sun Liwen 2008-12-18T16:34:26Z 2008-12-18T16:34:26Z <p><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> is a great tool like ASM. It's a subproject of Mono, and totally open source. It even provides <a href="http://codebetter.com/blogs/patricksmacchia/archive/2008/03/18/mono-cecil-vs-system-reflection.aspx" rel="nofollow">better feature</a> than System.Reflection. </p>