标签:bool ret finally box 执行 pen ring string cti
bool conTest() { SQLConnection mycon=new SQLConnection(constring) try { mycon.Oen(); if(mycon.state==ConnectionState.Open){ messageBox.Show("OK"); retrun true; } else messageBox.Show("false"); } catch { return false; } finally { mycon.close(); } 一般来说当 mycon.Open()失败会直接跳到catch语名,else后面的语句是不会执行的,所以要在catch里加入 return 语句.标签:bool ret finally box 执行 pen ring string cti
原文地址:http://www.cnblogs.com/clarklxr/p/7115798.html