Frage

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.

War es hilfreich?

Lösung

Try this:

if(System.Diagnostics.Debugger.IsAttached && yourVariable == specificValue)
  System.Diagnostics.Debugger.Break();
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top