Quick Tip C#: In Visual Studio, breakpoint does not hit while debugging the application.
Views (922)
Introduction
Sometimes in visual studio, debugger does not hit the breakpoint even after rebuilding the project. We get a yellow dot on the breakpoint which indicate that breakpoint will not hit. But why does this happen?
In this blog, we will see what are the reasons and how to resolve this issue.
Description
Following are the causes
1. Project build is not proper.
2. Project mode is release.

Resolution
1. Change project to debug mode

2. Rebuild the project


Cheers!!!
This was originally posted here.
*This post is locked for comments