有以下的C#程序:
namespace aaa
{ public class Program
{ public static void ThrowException()
{ throw new Exception(); }
public static void Main()
{ try
{ Console.Write("try ");
ThrowException();
}
catch (Exception e)
{ Console.Write("catch "); }
finally
{ Console.Write("finally "); }
}
}
}
该程序的运行结果是 。