My C# debugger is not working properly it skips the break points and line of codes some times. i have checked configuration manager. even i have added projects to new solution files. can any ony plz help me???
|
|
|||||||||
|
|
|
Make sure optimizations are disabled (this is the defaut for the Debug configuration, but they are enabled in Release configuration). Compiler optimizations can mess with the debugger... |
||||
|
|
|
Are you sure that it compiled correctly? It sounds to me like you're debugging against a previous version, which can happen if the build fails (perhaps a code bug, perhaps the files are readonly). |
||
|
|
|
My debugging checklist:
On certain cases you might find that your module doesn't get loaded at the point where you attach your debugger (for example if you have some sort of plug in archetecutre, and plugin assemblies are only loaded when you first use them). In these cases all you can do is try and make sure everything is prepared ready for when the module is loaded. |
||
|
|
|
This sounds like your source code is out of sync with the PDB files. The easiest solution is to clean the solution (which deletes all your dlls from the bin folder). Recompile, and then try stepping through again. If it still fails, try closing the solution and deleting the "obj" folders. And then try again. And also check you are compiling in debug mode - something I've done often ("why isn't it stepping through?!") |
||
|
|
|
If entire methods are being skipped, look at the source and see if the System.Diagnostics.DebuggerStepThroughAttribute attribute is present. Despite the name, it PREVENTS the debugger from stepping through the method. |
||
|
