将字符串转换为字节(0x??)
我制作了一个发送密钥的窗口窗体应用程序,但为了发送密钥,我这样做:
要发送“A”,我必须写下 MyFunction(0x41)。 0x41 是一个字节。
我可以将 41 作为字符串获取,但如何将其转换为字节(这种格式 - 0x41)
I've made a window form application that send keys but in order to send keys I do this:
To send 'A' I have to write down MyFunction(0x41). 0x41 is a byte.
I can get the 41 as a string, but how do I convert it to a byte (of this format - 0x41)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其转换为整数类型:
You can cast it to an integer type:
您可以使用 Convert.ToByte
You can use Convert.ToByte