标签: c# string hex byte
我有一个字符串:
string s="0x0f"
我想将其存储到byte b中 这样 byte b=0x0f 如何在C#中完成?请不要用byte []表示。只是一个字节值。
byte b
byte b=0x0f