Tagged Questions

2
votes
1answer
49 views

ildasm, then ilasm with same meta data

We need to patch an assembly and we can't rebuild from source code at the moment. I can dump the IL using ildasm mydll.dll /all /out=mydll.il and then I can rebuild it with ilasm /dll mydll.il and ...
2
votes
5answers
111 views

Why is the .ctor() created when I compile C# code into IL?

With this simple C# code, I run csc hello.cs; ildasm /out=hello.txt hello.exe. class Hello { public static void Main() { System.Console.WriteLine("hi"); } } This is the IL code ...
1
vote
1answer
65 views

Decompile a .NET Assembly without ILDASM

I wrote a little .Net disassembler - no problem but I use the ILDASM.exe for getting the ILCode of an assembly. Is it possible to get the ILCode of an assembly without ILDASM?