vote up 0 vote down star

In c++ there is a function called atexit where you can register functions which should be run when the system exits. Are there any similar events in C#?

UPDATE: The AppDomain.ProcessExit doesn't seem to catch Ctrl-C or Ctrl-Break. Anyone knows anything about that?

flag

4 Answers

vote up 1 vote down check

You can check the ProcessExit and DomainUnload events of the AppDomain class.

link|flag
Doesn't seem to catch Ctrl-C though. Know anything about that? – Mats Fredriksson Nov 5 at 11:35
@Mats: CTRL+C seems to close the process in some way that will not raise these events. That particular key combination do however raise the Console.CancelKeyPress event. So a combination of AppDomain.ProcessExit and Console.CancelKeyPress should cover most exit scenarios, I think. – Fredrik Mörk Nov 5 at 12:35
vote up 1 vote down

Maybe the answers to this may help you:

link|flag
So probably need to catch both events then, the ProcessExit and the ConsoleCancelEventHandler. Would be neat with just one event that's always called. Well, well.. – Mats Fredriksson Nov 5 at 11:39
Could be. But that shouldn't be much of a problem, just do whatever you need to do in a separate method which is called by both eventhandlers or something :) – Svish Nov 5 at 14:21
vote up 0 vote down

If you're running a WinForms app you can add a listener to the Application.ApplicationExit event

link|flag
vote up 0 vote down

There's the Application.ApplicationExit event if you've a WinForms application. For WPF there's Application.Exit.

link|flag
I know how to shut down applications, I'm interested in how to attach events to when that happens. Thanks anyway tho. – Mats Fredriksson Nov 5 at 11:37
Sorry, the one about the console app was wrong (I edited that). The two remaining references are events occuring when you exit your app (WinForm/WPF). – andyp Nov 5 at 11:46
Cool. Unfortunately I need it in console mode.. Probably should have mentioned that. – Mats Fredriksson Nov 5 at 13:43

Your Answer

Get an OpenID
or

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