Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
663 views

Does Mono have the equivalent of ILDASM?

Is there an equivalent of ILDASM for Mono?
6
votes
2answers
204 views

Can we disassemble (using ILDasm) an NGen-ed assembly?

If I NGen an assembly, is it normal that ildasm still disassembles it? Ok. I wrote a HelloWorld class library and the ensuing dll is named NGenILDasmTest.dll. --> Targeted for the .Net fw 4. From ...
4
votes
3answers
195 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 ...
4
votes
3answers
173 views

System.Reflection - Global methods aren't available for reflection

System.Reflection does not (AFAIK) support reflecting on global methods in an assembly. At the assembly level, I must start with the root types. My compiler can produce assemblies with global ...
2
votes
1answer
47 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
109 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
553 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 ...
2
votes
1answer
41 views

Missing graphics when disassembling and re-assembling .net program

I have a piece of software. When I disassemble the PE file ildasm foo.exe /output=foo.il I get a bunch of files, like foo.MainForm and foo.bar.dll. When I then try to re-assemble the file ilasm ...
1
vote
1answer
63 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
47 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
124 views

Is there a tool to disassemble a single .NET type along with all of its dependencies?

Suppose I wish to disassemble a type. But this type depends on other types in the same assembly and so forth. In a sense, I wish to be able to disassemble the closure defined by a particular type. I ...
1
vote
1answer
178 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 ...
1
vote
3answers
163 views

In general, how to convert ilasm syntax into Reflection.Emit calls?

I am writing a special-purpose mini-compiler and I often view disassembled CIL to figure out how to do things. But it's often not obvious how to translate the disassembled code to Reflection.Emit ...
0
votes
0answers
26 views

How to compare two C# build results

Given a solution with ~100 projects in C#, when built with various degrees of parallelism, I'd like to ensure that the resulting assemblies are the same. I am following the "trust your suppliers but ...
0
votes
0answers
74 views

Modify the version info of a built .Net assembly

I was wondering if there is anyone knowing a better way to modify the version info of a .Net assembly of the one I am currently using. My current approach is the following one: I do disassemble the ...
0
votes
1answer
66 views

How to locate Anonymous Types in source code files using Visual Studio

During the process of obfuscating a .NET assembly (using Dotfuscator), I have found myself tweaking how things are renamed. This often involves looking at the assembly in ILDASM and tracing a Type ...
0
votes
2answers
19 views

What is the impact of adding a reference on compiled code?

When I add a reference to a .dll file, what changes in the compiled output of a project? (Just imagine I have added a reference and rebuild.)
0
votes
1answer
74 views

Does monodis tool from mono work against Microsoft .NET assemblies?

I know the monodis tool does the same thing for Mono that ILDASM does for Microsoft .NET. But is the monodis tool compatible with .NET in that it would work against a Microsoft .NET assembly because ...
0
votes
1answer
319 views

Custom attributes are not consistent errors moving a VS 2008 solution to VS 2010

I'm trying to move my VS 2008 solution to VS 2010. Everything works perfectly (compile and link) if I keep the target framework at 4.0. When I change the framework 2.0 and change the platform ...