Tuesday, July 28, 2009

In C# I am getting an error message " No source code found?" when am trying to debug by having a break point?

Any suggestion regarding this situation ???

In C# I am getting an error message " No source code found?" when am trying to debug by having a break point?
if you are stepping with the debugger into a managed code DLL (assembly) that you just installed (without the source), you will see that message.





Also, if your C# program steps into unmanaged code (via p/invoke), the .NET debugger will not be able to switch to the unmanaged code. There are scenarios described in the MS knowledgebase for debugging managed and unmanaged code, but that won't work if you don't have the source.


No comments:

Post a Comment