When debugging my C#, I often want to know when a variable\'s value changes and then investigate the state of the program.
Currently, I do
You could write an if statement that checks for a change and have a break point happen within that if statement, thus it breaks initially, then you click resume, it continues until it hits this break point.