I want to get my hands on an assembly by saving it to disc or reflect it at runtime. The assembly is generated dynamically in memory by third party.

Does anyone know how to do this?

link|improve this question

60% accept rate
feedback

2 Answers

You can use the Save method on AssemblyBuilder.

link|improve this answer
HAHA, try again :) – leppie Dec 9 '09 at 9:14
Assembly saving is so funny! But obviously you're right -- if Daniel has an Assembly instance AssemblyBuilder won't be very usefull :) – Romain Verdier Dec 9 '09 at 9:17
You can only set those flags when you create the assembly/module. – leppie Dec 9 '09 at 9:21
Well, if the guy's lucky enough, he can cast the Assembly to an AssemblyBuilder, and call Save on it if it has been created with Save or RunAndSave flags. – Jb Evain Dec 9 '09 at 9:30
I can't use Save since I have an InternalAssemblyBuilder. – Daniel Dec 9 '09 at 13:17
show 1 more comment
feedback

You can do this using SOS in WinDbg.

The problem is finding the modules.

If you do get your hands on it, there is a 'SaveModule' command to dump the module/assembly to file.

Good luck :)

link|improve this answer
Well, talking about trying again, you can't SaveModule a «Run» only module :) – Jb Evain Dec 9 '09 at 9:54
@JB: this is from within WinDbg, I am not aware of such limitations. – leppie Dec 9 '09 at 10:40
That's what am saying. You can see the module with !DumpDomain, but you can't !SaveModule it. – Jb Evain Dec 9 '09 at 10:45
1  
The fact that you're not aware of the limitation doesn't make the limitation any less real. A dynamically created assembly doesn't have a module that you can interact with like any loaded PE module in windbg. They don't have a base address that you can use, and you can't dump them. – Jb Evain Dec 9 '09 at 13:34
2  
You can still debug dynamic assemblies (albeit you lose a bit of details and possibilities iirc). It's just that dynamic module are not in a PE shape that msdbg can dump until they're really saved to disk. They have their custom representation in the CLR. – Jb Evain Dec 9 '09 at 14:10
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.