.net COM object debugging

  • Thread starter Thread starter fedak
  • Start date Start date
F

fedak

In VB6, one was able to "run" a class library (.dll) in the IDE. When
an external application then instantiated an object in the library, it
would be routed to the live IDE debug session.

Is there a way to do this in .net? I can get it to work if I
explicitly launch the external application when I run the .net class
library, but I would much prefer the old passive vb6 style
functionality.

-fedak
 
Attach the debugger to the app, using the debug menu is my first thought.
overall, it is easier to work with multiple projects in the IDE and start
the executable (or web site) and step into the library.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
Think outside the box!
*************************************************
 
Back
Top