带运算符的Concat字节值?

时间:2012-08-15 04:32:57

标签: c# unicode byte

在PHP中,我可以用'连接每个值。 '运营商。
现在我想在c#中连接一些字节值,如下所示:

$byteData = "\x00\x00" . "Soroush" . "\x20";

它在c#中是否可行?

2 个答案:

答案 0 :(得分:2)

试试这个:

    byte[] byteData = (new byte[]{0,0}).Concat(Encoding.UTF8.GetBytes("asas")).Concat(new byte[]{20}).ToArray();

答案 1 :(得分:1)

您可以使用运营商+

string string_variable = "great";
string test = "This is a " + string_variable + " test";

您可以将字节数组转换为字符串:

string value = ASCIIEncoding.ASCII.GetString(byteArray)

或者,对于UTF-8使用

string System.Text.Encoding.UTF8.GetString(byte[])

将字符串转换回字节数组:

byte[] byteArray = Hex.decodeHex(str.toCharArray());