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