Top "Conditional-breakpoint" questions

In software development, a conditional breakpoint is an intentional stopping or pausing place in a program, put in place for debugging purposes, when a conditions such as the reading, writing, or modification of a specific location in an area of memory, occurs.

Break when a value changes using the Visual Studio debugger

Is there a way to place a watch on variable and only have Visual Studio break when that value changes? …

visual-studio debugging breakpoints conditional-breakpoint
How to use conditional breakpoint in Eclipse?

I want to know how to place a conditional breakpoint in Eclipse. I have a code like: public static void …

java eclipse debugging conditional-breakpoint
how to create conditional breakpoint with std::string

Suppose I have this function: std::string Func1(std::string myString) { //do some string processing std::string newString = Func2(myString) …

visual-studio debugging conditional-breakpoint
Can I set a breakpoint when variable is getting a specific value in .NET?

I am using Visual Studio 2010, and I know this feature is available in C++. I need to debug some code, …

.net visual-studio debugging breakpoints conditional-breakpoint
Conditional breakpoint in Visual Studio

I want to set a breakpoint on a certain line in C# code when some other variable is equal to …

c# visual-studio debugging conditional-breakpoint
How to set conditional breakpoint based on string comparison in Visual Studio?

This is something I have tried from time to time over the years and never quite succeeded. I just want …

c++ visual-studio-2012 breakpoints string-comparison conditional-breakpoint
IntelliJ Idea (debugging) conditional breakpoint dependent on other breakpoints

I want to set a debug breakpoint in IntelliJ Idea that is only active, if another previous breakpoint was activated. …

debugging intellij-idea breakpoints conditional-breakpoint
Error when using a conditional breakpoint on System.Type

This is the function: public void Init(System.Type Type) { this.Type = Type; BuildFieldAttributes(); BuildDataColumns(FieldAttributes); } I've set a breakpoint …

c# conditional-breakpoint
Setting Memory Breakpoints in Eclipse

How do you set memory breakpoints in Eclipse? That is, I would like to set a conditional breakpoint that triggers …

eclipse memory conditional-breakpoint