Can .NET convert quot;Yesquot; amp; quot;Noquot; to boolean without If?(.NET 可以转换“是吗?amp;“不没有 If 的布尔值?)
问题描述
你会认为会有一种使用 DirectCast、TryCast、CType 等的方法,但它们似乎都被它窒息了,例如:
You would think there would be a way using DirectCast, TryCast, CType etc but all of them seem to choke on it e.g.:
CType("Yes", Boolean)
你得到:
System.InvalidCastException -从字符串是"转换为类型布尔值"无效.
System.InvalidCastException - Conversion from string "Yes" to type 'Boolean' is not valid.
推荐答案
如果你仔细想想,yes"不能转换为 bool,因为它是一个语言和上下文特定的字符串.
If you think about it, "yes" cannot be converted to bool because it is a language and context specific string.
是"不是真实的同义词(尤其是当你的妻子这么说时......!).对于这样的事情,您需要自己进行转换;yes"表示真",mmmm yeeessss"表示半真半假,也许",等等.
"Yes" is not synonymous with true (especially when your wife says it...!). For things like that you need to convert it yourself; "yes" means "true", "mmmm yeeessss" means "half true, half false, maybe", etc.
这篇关于.NET 可以转换“是"吗?&“不"没有 If 的布尔值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.NET 可以转换“是"吗?&“不"没有 If 的布尔值?


- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01