将字符串转换为字节(0x??)

发布于 2024-11-04 15:24:23 字数 139 浏览 0 评论 0原文

我制作了一个发送密钥的窗口窗体应用程序,但为了发送密钥,我这样做:

要发送“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜中书 2024-11-11 15:24:23

您可以将其转换为整数类型:

MyFunction((byte)'A');

You can cast it to an integer type:

MyFunction((byte)'A');
国粹 2024-11-11 15:24:23

您可以使用 Convert.ToByte

You can use Convert.ToByte

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文