13、反射获取方法所在的类名称:System.Reflection.MethodBase.GetCurrentMethod().DeclaringType
12、try{}catch(){}finally{//必定进入}
try { throw new Exception("try"); } catch(Exception ex) { Debug.Write(ex.Message);//进入 throw new Exception("catch");//进入 } finally { Debug.Write("finally");//必定进入 }