0

I just need to find a certain location that a value is being set and I think the best way would be to somehow run through the whole project as it does with a breakpoint instead of trying to just find it. this is visual studio 2019 btw.

  • Per your exact question, you can possibly set a breakpoint on your entry point and single-step through there. But you're probably better off using a data breakpoint: https://stackoverflow.com/questions/6224031/how-get-a-breakpoint-on-variable-write-in-visual-studio – buhao Mar 04 '21 at 18:06
  • the thing is I have no idea what the type is or the name or where it even might be I don't know where to set the breakpoint. – Isaac Bredbenner Mar 04 '21 at 19:27

1 Answers1

1

If your application is using .NET, you may try my Runtime Flow extension that can show your the first method called in your project .dll.

Sergey Vlasov
  • 26,641
  • 3
  • 64
  • 66