Reputation: 36749
I have a 3rd party .dll file and its source code as well ( written in C# ). I can create a new project and add reference of this .dll file to use its methods. But when I debug I want to step in to the methods defined in .dll file ( Just like we do when we have .jar file and its source-code in java ).
How can I do this in Visual Studio Express ( I have VS 2012 ).
Upvotes: 0
Views: 2056
Reputation: 21004
The easiest, if you have the source code, would be to add the project to your solution and compile both at the same time. You could then breakpoint everywhere! (And don't you dare tell me breakpoint isn't a verb)
Upvotes: 7