将数字转换为 .NET 中的十六进制值
我需要将整数转换为十六进制值。它看起来像这样:
0x0201cb77192c851c
当我在 C# 中执行时
string hex = int.ToString("x")
,它返回
201cb77192c851c
如何获得所需的结果?
I need to convert an integer number to the hex value. It will look like this:
0x0201cb77192c851c
When I do
string hex = int.ToString("x")
in C#, it returns
201cb77192c851c
How can I get the required result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种方法是在“x”后面附加所需的位数。这将根据需要用前导零填充输出。
或
来自 十六进制 ("X") 格式说明符
:
One way would be to append the number of digits you need, after "x". This will pad the output with leading zeros as necessary.
or
From The Hexadecimal ("X") Format Specifier
: