Tagged Questions

6
votes
2answers
202 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
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 ...
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
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
3answers
162 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
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.)