using debug without a client?

  • Thread starter Thread starter Andy B.
  • Start date Start date
A

Andy B.

I have need to see what some values are while the dll I have a class in is
being ran. How do you do that?
 
Hello Andy,
I have need to see what some values are while the dll I have a class in is
being ran. How do you do that?

If you compile the DLL as a debug version, and then import it into a
project, you can step through it just by setting a breakpoint and
single-step further.

Best regards,

Martin
 
Andy B. said:
I have need to see what some values are while the dll I have a class in is
being ran. How do you do that?


Keeping all of your projects in a single solution is one way to solve this,
in addition to Martin's solution.
 
Back
Top