Reputation: 2793
Is it possible to have conditional breakpoints (without changing anything about the sourcecode) in Vistual Studio 2008 with C++ language?
thanks!
Upvotes: 1
Views: 862
Reputation: 54128
Yes, you can specify a condition on a breakpoint in any language. Note that this can slow execution down quite a bit, depending on the condition and how often the check has to be made.
Upvotes: 3