Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio debugger step into compiled source

I want to be able to step into the source code that is behind a 3rd party (not .Net framework) dll referenced in my own user code. I've done this before but can't now. When I try to step in, VS says there is no source available and would I like to go to disassembly.

How do I get VS to ask me to link to the source code to step into?

Cheers

like image 732
Berryl Avatar asked Nov 22 '25 01:11

Berryl


1 Answers

What you would need is the debug file (.pdb) of the assembly you want to step into.

The debug file contains all the information about every line, every method, class and variable, but it does not guarantee that you would successfully be able to "step into" the actual 3rd party source code as originally developed.

like image 168
Mike J Avatar answered Nov 23 '25 16:11

Mike J



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!