Tagged Questions

4
votes
3answers
196 views

disassemble c# code to machine instructions

I am experimenting with compiler performance. I have a very small piece of code, just a few floating point multiplications and additions. The code gets executed in a loop several million times. I am ...
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 ...
2
votes
3answers
556 views

ildasm visual studio 2010

Is there a convenient method or tool available which will do the following for me from within visual studio 2010. Fire up ILDasm Load a current assembly from within Visual Studio within ILDasm. As ...
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?
1
vote
0answers
48 views

How do I Obtain Code Coverage on Assembly after ExportDll has run it through ildasm/ilasm?

I'm using a post-build step on my C# assembly to expose a function signature from my dll. This step uses the ExportDll tool from http://www.codeproject.com/KB/dotnet/DllExport.aspx. However, if I ...
1
vote
1answer
179 views

signing unsigned interdependent third party libraries

My project uses a set of unsigned third party libraries (compiled in .Net 2.0). I already know how to sign these libraries using ildasm and ilasm. However, the problem is that the thirdparty libraries ...