up vote 0 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

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
feedback

1 Answer

up vote 3 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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