摘要:
/// ///读取xml的方法 /// /// public List GetXml() { List list = new List(); XmlDocument... 阅读全文
摘要:
1、不管有木有出现异常,finally块中代码都会执行;2、当try和catch中有return时,finally仍然会执行;3、finally是在return表达式运算后前执行的,所以函数返回值是在finally执行前确定的;4、finally中最好不要包含return,否则程序会提前退出,返回值... 阅读全文