try

  Debug.WriteLine("11");
}
catch
{
  Debug.WriteLine("22");}
finally
{
  Debug.WriteLine("33");}-------------------------------------------------------------
上面的输出为: 11 33try

  Debug.WriteLine("11");
  Error command
}
catch
{
  Debug.WriteLine("22");}
finally
{
  Debug.WriteLine("33");}
//-------------------------------------
输出  11 22 33