Possible Duplicate:
How to copy part of an array to another array in C#
c# - how to copy a section of "b开发者_C百科yte[]" variable to another array?
how about something like:
var byteArray = new byte[] { 1, 0, 1 };
var startIndex = 1;
var length = 2;
byteArray.Skip(startIndex).Take(length).ToArray();
精彩评论