Today I will explain how to debug your dll’s using PDB files. Make sure your dll’s have their corresponding pdb files in your bin folder:

Go to Visual Studio Tools, Options

Go to Debugging and uncheck “Enable Just My Code (Managed Only)” and “Step over properties and operators (Managed only)”.

Select Symbols under Debugging and add a new folder and type in “/Bin”

Run your Application, go to Visual Studio and press: “Ctrl+D,M”. This will open the modules window. Scroll down until you find your dll’s and make sure it says “Symbols Loaded” under Symbol Status.

Put a break point in your existing code, you will now be able to step into the dll’s to debug

