How can I make an GTK#-application handle exceptions similar to an
Delphi program:
Once an unhandled exception occurs the program should be resumed after
an error message.
Just placing an except statement to the main-loop does handle the
exception but results in an segfault afterwards:
while (true) {
try {
Application.RunIteration();
} catch (Exception ex) {
System.Console.WriteLine(ex.Message);
System.Console.WriteLine(ex.StackTrace);
}
}
_______________________________________________
Gtk-sharp-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list