Using this method Assembly.Load(Byte(), Byte()) http://msdn.microsoft.com/en-us/library/twt16z2x.aspx It is possible to provide a byte representation of the pdb file.

Given that an assembly has already been loaded is it possible to provide pdb data after the fact.

Edit: I am talking programmatically. ie not with the debugger

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
+50

It is not possible in managed code. And I have no idea how to do it in unmanaged!

link|improve this answer
feedback

you can try going into debug > windows > modules in vs when you're attatched to the process. there you'd locate your assembly, right click on it and select load symbols (or something to that effect).

i have tried that will byte[]-loaded assemblies though..

link|improve this answer
1  
I am talking programmatically. ie not with the debugger. I updated the question – Simon Jun 10 '11 at 13:15
i see, updating awnser – aL3891 Jun 10 '11 at 13:43
1  
oops, misread the question, i found the same .Load() overload, but you want to load symbols at a later time.. i'll do some digging – aL3891 Jun 10 '11 at 13:48
1  
im starting to wonder if this is possible at all, atleast from managed code :/ i found the Module and ProcessModule classes, but they dont seem to be able to load symbols them selvs, but i think they are part of the solution.. you might be able to start a windbg process and load it that way, maybe using info from the classe above.. sorry i coundt provide a complete solution :/ – aL3891 Jun 10 '11 at 14:40
feedback

Your Answer

 
or
required, but never shown

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