两个byte[]拼接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个byte[]拼接相关的知识,希望对你有一定的参考价值。
//两个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;
}
以上是关于两个byte[]拼接的主要内容,如果未能解决你的问题,请参考以下文章