两个byte[]拼接

时间:2023-05-24 10:35:32

//两个byte[]拼接
public byte[] copybyte(byte[] a, byte[] b, byte[] c, byte[] d, byte[] e)///,byte[] f,byte[] g)
{
byte[] h = new byte[a.Length + b.Length + c.Length + d.Length + e.Length];/// + f.Length + g.Length];
a.CopyTo(h, 0);
b.CopyTo(h, a.Length);
c.CopyTo(h, a.Length+b.Length);
d.CopyTo(h, a.Length + b.Length + c.Length);
e.CopyTo(h, a.Length + b.Length + c.Length + d.Length);
//f.CopyTo(h, a.Length + b.Length + c.Length + d.Length+e.Length);
//g.CopyTo(h, a.Length + b.Length + c.Length + d.Length + e.Length+f.Length);
return h;
}