c#语法 try..catch..finally
bool isSent=false try { } catch(Exception ex) { //write log throw ex; } finally {
//不管上面是否有异常,这段都会执行 //write log } return isSent;
本文来自博客园,转载请注明原文链接:https://www.cnblogs.com/keeplearningandsharing/p/16163862.html
bool isSent=false try { } catch(Exception ex) { //write log throw ex; } finally {
//不管上面是否有异常,这段都会执行 //write log } return isSent;
本文来自博客园,转载请注明原文链接:https://www.cnblogs.com/keeplearningandsharing/p/16163862.html