Adam Shakhabov
Adam Shakhabov

Reputation: 1366

Button "Step Back Over" always disabled

While debugging in Visual Studio v16.3.2 I want to back on the previous breakpoint and I am trying to achieve it via Step Back Over button. Why this button always disabled?

enter image description here

Upvotes: 0

Views: 203

Answers (2)

PawanS
PawanS

Reputation: 7193

I am not sure if you are using correct configuration but link can help you setting.

Step Back Debugging

Other possible reason could be, is step back allowed on variable assignments?

Upvotes: 0

Adrian
Adrian

Reputation: 8607

The reason could be that it's disabled in your IDE.

Try

Tools > Options > IntelliTrace > General

and in there make sure that “IntelliTrace events and snapshots” is checked.

This might or might not require a restart of the IDE.

Upvotes: 1

Related Questions