Question mark in Debug point
Hi guys
Debug point in my code shows a question mark and execution does not halt where expected. I have looked for solutions in various places, but no luck yet.
Here are some of the settings in my environment.
Solution Configuration = set to "Debug"
Generate Debugging Information = True
Enable Unmanaged Debugging = False (tried with True too)
Any help would be highly appreciated.
Regards
Suhaib
(I have asked this very question in the .Net Framework forum too. Sorry if this is not acceptable)
Re: Question mark in Debug point
Quote:
Originally Posted by suhaib
(I have asked this very question in the .Net Framework forum too. Sorry if this is not acceptable)
Unfortunately, this cross-posting is against the rules of the Acceptable Use Policy. Thus, I have removed the second post. Please choose always the forum that is appropriate for the corrersponding question.
Thank you very much. Have fun with the forums.
Re: Question mark in Debug point
which version of Studio are you using?
Re: Question mark in Debug point
The question mark means the debug point is not going to be activated during the current execution.
This is most likely because Visual Studio is out of sync with your DLL/assembly.
If rebuilding the solution does not work, try deleting all the bin directories in your solution. This is safe to do because it does not affect your source code.
Re: Question mark in Debug point
Norfy,
sometimes in project configuration - Debug options - "Optimize code" Flag disables debugging process.
in VS2K5 - there is a new debugging option called - Just My Code which simply disables debugging the native code.