Tagged Questions
6
votes
2answers
228 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
1answer
65 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 ...
4
votes
3answers
180 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 ...
1
vote
1answer
89 views
Decompile a .NET assembly without ILDASM
I wrote a little .NET disassembler. No problem, but I use the ILDASM.exe for getting the IL code of an assembly.
Is it possible to get the IL code of an assembly without ILDASM?
1
vote
1answer
127 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
171 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
11 views
constructor of web service proxy crashes because app wants to load assembly that doesn't exist
I've created a web service proxy class using VS2010 "add web service reference" feature that generates .NET 2.0 reference . Could not create a proxy class using .NET 4.0 - the class is generated ...
0
votes
1answer
70 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
22 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.)