5 public delegate bool FilterStackFrame(object o
);
7 public static void DumpException(FilterStackFrame fsf
) {
10 public static void foo (out bool continueInteraction
) {
11 continueInteraction
= false;
15 catch (Exception ex
) {
16 DumpException(delegate(object o
) {
22 public static void Main (String
[] args
) {