vote up 0 vote down star
1

is there a difference in the dispose() functions being called ?

flag

More specifics would help here - are you talking about closing the debuggee with the X, or visual studio? Which dispose() functions are you wondering about? – Charlie Oct 16 '08 at 13:45

1 Answer

vote up 3 vote down check

I'll guess that you're asking about closing the debuggee via the X button in the top right, versus stopping debugging via the Stop Debugging command (Shift+F5) from Visual Studio.

When you close the app with the X button, any cleanup code you've written for the application will run as normal, including Dispose functions(). On the other hand, stopping with Shift+F5 terminates the process immediately, as though you had terminated it from the Processes tab in Task Manager. This means that no cleanup code will run - the application will have no idea that it is shutting down.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.