Why does Conditional breakpoint decrease the application execution speed at debug time?
问题 When I use conditional breakpoint in VS2005 instead of using temporary code to check specific conditions, I noticed it takes more time and the execution speed is decreased!! Do you know why? and how to resolve this issue? Exmaple: int sequence = atoi(m_SequenceNumber.GetAscii()); if( sequence == 392914)//temporary code to check to step into code { int x = 0;//I put breakpoint here } The previous code will execute faster than if I used conditional breakpoint with ( sequence == 392914) 回答1: It