C#程序结果运行,求解释,不明白(c#学习者)

有以下的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 ");  }

         }

     }

}

该程序的运行结果是 。

你在工具上上运行一下不就出来了...
try catch finally