Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个发送密钥的窗口表单应用程序,但为了发送密钥我这样做:
要发送“A”,我必须写下 MyFunction(0x41)。0x41 是一个字节。
我可以将 41 作为字符串获取,但如何将其转换为字节(这种格式 - 0x41)
您可以将其转换为整数类型:
MyFunction((byte)'A');
您可以使用Convert.ToByte