我有以下代码:
string s = "2563MNBJP89256666666685755854";
Byte[] bytes = encoding.GetBytes(s);
string hex = "";
foreach (byte b in bytes)
{
int c=b;
hex += String.Format("{0:x2}", (uint)System.Convert.ToUInt32(c.ToString()));
}
打印十六进制值。如何在像这样的向量ob字节中添加它?
new byte [0x32,0x35..]
In hex I have : 323536...
。依此类推。下一步是to add then in a byte[] vector in the following format 0x32,0x35..and so on; How to do this?
THX
答案 0 :(得分:1)
bytes
是否已经是您想要的字节列表?
答案 1 :(得分:0)
C#:System.Text.Encoding.ASCII.GetBytes("test")
答案 2 :(得分:0)
对于C#
,您可以尝试
System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding();
Byte[] bytes = encoding.GetBytes(strVar);//strVar is the string variable
答案 3 :(得分:0)
在C#中,您可以使用Encoding.GetBytes Method