STRING TO HEX如何添加向量ob字节?

时间:2011-05-18 08:43:16

标签: c# .net

我有以下代码:

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

4 个答案:

答案 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