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
There's the Application.ApplicationExit event if you've a WinForms application. For WPF there's Application.Exit.