I wanted to have some code execute before my program exited, so I thought that editing to the VS created Program.cs to look like:

...
try
{
    Application.Run(new main_form);
}
finally
{
    special_shutdown_code();
}
...

would do the trick, but my special_shutdown_code() is not being executed when I click the [x] in the upper right corner of the main form. I went back and added print statements:

...
try
{
    System.Console.WriteLine("Before");
    Application.Run(new main_form);
    System.Console.WriteLine("After");
}
finally
{
    System.Console.WriteLine("finally");
    special_shutdown_code();
}
System.Console.WriteLine("post-finally");
...

"Before" was the only output printed.

From what I've read the Application.Run functions should return. I'm at a lost. Any explanations would be appreciated.

This is a C++/CLR + C# + C mixed program, but the main part is C#.

I'm hoping to get an explanation for what is not happening rather than suggestions for how to accomplish the same functionality. I am able to work around this for most cases, but what seemed like the cleanest, easiest to understand, and the right way to do it not working at all confuses me.

link|improve this question
3  
How are you closing it? there are some pretty brutal ways to kill an app if you try... – Marc Gravell Oct 13 '11 at 22:03
2  
So I take it that "After" isn't printed either? And how do you close this program? – Henk Holterman Oct 13 '11 at 22:04
"before" is the only output – nategoose Oct 14 '11 at 3:06
I closed the window with the X in the upper right corner of the title bar. I know that exceptions aren't the magical tools that most programming books want us to believe they are, but I expected that this would have been good enough for most cases. – nategoose Oct 14 '11 at 3:16
possible duplicate of How can I execute code after my form starts? Really good description of why is in the answers. – Chris Lively Nov 4 '11 at 15:06
show 1 more comment
feedback

1 Answer

You could try:

Form mainForm = new MainForm();
mainForm.Closing += delegate(...)
{

};
Application.Run(mainForm);

Not sure if this would actually work...

link|improve this answer
1  
Would that run when an unhandled exception occurs? I think not. – Henk Holterman Oct 14 '11 at 16:52
@Jason: I appreciate the suggestion, but I was actually looking for an explanation for the program behaving the way it does. – nategoose Nov 4 '11 at 14:59
feedback

Your Answer

 
or
required, but never shown

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