I have a program and I have breakpoints throughout the code, some active and some disabled. To effectively test the program I need to have it run for a while without interference and then use breakpoints to check the state of things.
It is too time consuming and difficult to delete or disable every breakpoint until I want to check the state and enabling all break pints does not work as some break points should stay disabled.
Right now I run the program without debugging which works great until I want to check what is going on.
I am wondering if there is any way to have VS completely ignore breakpoints in debug mode. Something similar to how I can choose to stop on handled exceptions.
One way is if the source file does not match the original file, so changing the original file in a text editor is a bad way to do what I want, and then change it back. But I am hoping there is a better, more reliable way to accomplish this?
Thanks
It is too time consuming and difficult to delete or disable every breakpoint until I want to check the state and enabling all break pints does not work as some break points should stay disabled.
Right now I run the program without debugging which works great until I want to check what is going on.
I am wondering if there is any way to have VS completely ignore breakpoints in debug mode. Something similar to how I can choose to stop on handled exceptions.
One way is if the source file does not match the original file, so changing the original file in a text editor is a bad way to do what I want, and then change it back. But I am hoping there is a better, more reliable way to accomplish this?
Thanks