How to load dll's during debug in VS2013
问题 I have some code var aa = a(); b(aa); While debugging, I set a breakpoint on the b() call. Then going to the immediate window , I'd like to be able to execute code from a DLL that is in my project but is not yet loaded . Say I want a new Boo and call Foo() . The code is in the namespace Baz in dll Spongle.dll . When I type >> new Baz.Boo().Foo(aa) I get the error: The type or namespace name 'Baz' is not valid in this scope. If I change my code such that my Boo is already loaded it works fine.