码迷,mamicode.com
首页 > 其他好文 > 详细

两个byte[]拼接

时间:2016-02-16 18:27:17      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

//两个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[]拼接

标签:

原文地址:http://www.cnblogs.com/VictorBlog/p/5193125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!