Debbug problem

  • Thread starter Thread starter Max André Bündchen
  • Start date Start date
M

Max André Bündchen

In the same solution I have a WinForm Project and a dll Project. How debug
the dll code when I call it from the winform (step into)?
 
Hello, Max!

MAB> In the same solution I have a WinForm Project and a dll Project.
MAB> How debug
MAB> the dll code when I call it from the winform (step into)?

In the dll project you can specify your winforms app that results from WinForm project.
Then set breakpoint and launch ( F5 )...

OTOH when debugging WinForms app, you can step in class methods defined in the
dll ( dll project ) if that dll was built in debug mode and debug symbols are present.

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
Back
Top