문제

I'm sure I have seen the answer to this on here before but I can't find it.

How do I, using code, set a breakpoint on a specific variable getting a specific value?

This is not what I'm looking for, there is a way to do it in code too.

In case it is not supported in all .NET languages I'm looking for a C# answer.

도움이 되었습니까?

해결책

Try this:

if(System.Diagnostics.Debugger.IsAttached && yourVariable == specificValue)
  System.Diagnostics.Debugger.Break();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top