Stop Debugger to Debug IL
My debugger keep jumping into debug开发者_开发百科ging the IL instead of jumping to debug code of another assembly. How can I turn it off?
Visual Studio right?
Tools -> Options
Click the Debugging section then deselect the Show disassembly if source is not available checkbox
But that will leave you without any debug information if source is not available. It sounds like the debug information is missing from those assemblies. Maybe they were built in release mode? Or the pdb files have not been copied? Of course if you don't have access to the original source code then it won't make any difference
精彩评论