Is there an easy way to set conditional breakpoints in Visual Studio?
If I want to hit a breakpoint only when the value of a variable becomes something, how can I do
Just another way of doing it, (or if you are using express) add the condition in code:
if(yourCondition) { System.Diagnostics.Debugger.Break(); }