Mat
Mat

Reputation: 2793

conditional breakpoints with c++ in Visual Studio

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

Answers (1)

Steve Townsend
Steve Townsend

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

Related Questions