How can I open a DLL class/file that I created from another project/solution?
For example: I have a class “AClass” in a DLL that I’m referencing. When debugging a project, I’m able to put a breakpoint in my project and then step into the DLL’s classes and view variables and insert breakpoints. However, it would take me a while to reach the class (AClass) that I actually want via stepping through the code. Is there a way to open the AClass file in the solution and insert breakpoints from there, instead of having to step through classes to reach it?
I have been unable to find where I can do this, but it seems possible.
The recommended way is to add the DLL project into your solution. Projects are designed to be used in multiple solutions.
Once the DLL project is in the solution, you can add a ‘project reference’ to it in the main project.
This way you can set breakpoints in the DLL project from the referencing solution.