比较 C# 中的字节数组十六进制值
我正在制作 C# Windows 应用程序。在该应用程序中,我有一个包含十六进制值的字节数组。假设我有字节数组,
array[0]=4E
array[1]=50
这里我想将这些值组合为 4E50
进行比较。我不想比较单字节。请帮助我。提前致谢。
I am making C# windows application.In that application i have one byte array containing hex values.suppose i have byte array as
array[0]=4E
array[1]=50
Here i want to combination of these values as 4E50
to compare.I dont want to compare single byte.Please help me.Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定我是否理解正确,你想将 0x4E50 与另一个数字进行比较吗?如果是这样,您可以执行以下操作:
这将为您提供 0x4E50。
I'm not sure if I understand correctly do you want to compare 0x4E50 with another number? If so you can do as follows:
This will give you 0x4E50.
编辑
灵感来自 Godwin 解决方案,但更好:
edit
inspired by Godwin solution , but better :