本文介绍了字符串在c#中未被识别为有效的布尔值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个数据库,可以在表中保存用户条件,并根据条件提供折扣。 i已从数据库中保存数据和重新获得的数据,并将其保存数据作为程序中的字符串。 现在的问题是我想以布尔格式转换这个字符串,我使用了Convert.toBoolean,它抛出字符串未被识别为有效的布尔表达式 然后我使用了Boolean.TryParse,但它总是返回false。 条件, 61.39> 50 && 61.39< 70,它返回false但是是的。 任何人都可以为此提供解决方案吗? 谢谢I have a database which saves user conditions in table and based on that conditions discount is provided.i have saved data and retirived data from database, and saved this data as string in program .Now problem is i want to convert this string in boolean format, I have used Convert.toBoolean which throws "string was not recognized as valid boolean expression" then i have used Boolean.TryParse but it always returns false.For condition, 61.39>50 && 61.39<70, it returns false but is true.Can any one provide solution for this??Thank You推荐答案 这篇关于字符串在c#中未被识别为有效的布尔值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-23 19:59