在C#编程过程中,将字符串string转换为double类型过程中,时常使用double.Parse方法,但double.Parse在无法转换的时候,会抛出程序异常,其实还有个double.TryParse方法可解决此问题,当字符串服务器无法转换为double类型的情况下,double.TryParse方法不会抛出异常,而是返回false.double.TryParse方法的签名为static bool TryParse(string s, out Double result),s代表要转换的字…