C# 二进制常量表示
我真的被这个难住了。 在 C# 中,有一种十六进制常量表示格式,如下所示:
int a = 0xAF2323F5;
是否有二进制常量表示格式?
I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :
int a = 0xAF2323F5;
is there a binary constants representation format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不,C# 中没有二进制文字。 您当然可以使用 Convert.ToInt32 解析二进制格式的字符串,但我认为这不是一个很好的解决方案。
Nope, no binary literals in C#. You can of course parse a string in binary format using Convert.ToInt32, but I don't think that would be a great solution.
从 C#7 开始,您可以在代码中表示二进制文字值:
可以找到更多信息 此处。
As of C#7 you can represent a binary literal value in code:
Further information can be found here.
您可以使用扩展方法:
但是,这是否明智我将由您决定(考虑到它可以对任何字符串进行操作)。
You could use an extension method:
However, whether this is wise I'll leave up to you (given the fact it will operate on any string).
自 Visual Studio 2017 起,支持像 0b00001 这样的二进制文字。
Since Visual Studio 2017, binary literals like 0b00001 are supported.