0

Is there a way to force VS to show every line of code that is executed after a click event? I am not sure where the first line of code is that will be executed so placing a specific breakpoint will not help. I am using c# with asp.net if that matters.

Hamid Mosalla
  • 3,279
  • 2
  • 28
  • 51
DuckDodger
  • 83
  • 10

1 Answers1

1

you can put a breakpoint at the first known line (that you can pragmatically state), when it stops, check the stacktrace, keep clicking on the previous statements to check the order. It may be that some of these statemnts are CLR and you may not have source code, but that tells you atleast what the statement is doing.

call Stack

Krishna
  • 2,451
  • 1
  • 26
  • 31