/ Published in: C#
Expand |
Embed | Plain Text
private byte[] Combine(byte[] a, byte[] b) { System.Buffer.BlockCopy(a, 0, c, 0, a.Length); System.Buffer.BlockCopy(b, 0, c, a.Length, b.Length); return c; }
You need to login to post a comment.
