Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm debugging a foreach loop which will iterate well over 1000 times - so I only want a breakpoint within the loop to break for a particular item.

So...

foreach(Employee employee in employees)
{
//DO SOMETHING
//BREAK HERE WHEN employee.Id == '2342'
//DO SOMETHING ELSE
}

Do I have to write an If statement and some dummy code within it and break it that way? That the only way?

share|improve this question

4 Answers

up vote 7 down vote accepted

If you're using anything other than the express editions of VS right click on the breakpoint and click Set Condition.

Personally I'd use this approach as I'd consider it bad practice to modify your code to debug it.

Otherwise you're forced to do it your way.

share|improve this answer
if (employee.Id == '2342') Debugger.Break();

Alternatively, you can set a conditional breakpoint in VS, but from my experience, that is incredibly slow.

share|improve this answer
Why the downvote? – leppie Jul 2 '12 at 8:57
2  
Personally i dislike changing my code to debug it IMHO it's a bad precedent, I've known very bad (and humorous) examples of debug code being left in applications. Some have cost contracts. This example is safe (although it'll wind up your fellow devs sharing the code) but next you're frustrated and trying to get javascript to fire and your support team are explaining to clients why their browser is firing swear words at them in alert boxes! – Liath Jul 2 '12 at 8:58

You can use conditional breakpoints in Visual Studio.

Right click on the breakpoint and choose conditional and then put in your clause.

share|improve this answer

Use a VS debugger with conditional breakpoint, via UI.

The easiest and fastest way imo.

The Ultimate Visual Studio Tips and Tricks Blog

share|improve this answer
3  
Fastest? It is 1000 times slower than a condition in code. – leppie Jul 2 '12 at 8:58
2  
it's extremely subjective. I, personally, use them every day and find much faster then "dirting" my code with something temporary. If I can avoid writing DEBUG code inside my production code, I do that. – Tigran Jul 2 '12 at 9:00
@leppie I did not know that, worth considering if you're running over a few million records - thanks! – Liath Jul 2 '12 at 9:01
@Tigran: Try it on some performance sensitive code, or on a heavily called method. Go make some coffee and hope the breakpoint has been hit. – leppie Jul 2 '12 at 9:02
2  
may be it will execute faster, but, again I, personally, would do that only if there is not way to do that, or disturbs me in some way from UI. Cause don't like adding debug stuff to my code. When I say faster, I mean not debugger execution, but breakpoint setup. – Tigran Jul 2 '12 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.