2019年5月24日
摘要: 1 案一:Try...Catch(执行效率不高) 2 private bool IsNumberic(string oText) 3 { 4 try 5 { 6 int var1=Convert.ToInt32 (oText); 7 return true; 8 } 9 catch 10 { 11 阅读全文
posted @ 2019-05-24 17:28 许海松 阅读(8741) 评论(0) 推荐(0)