Question is simple, i get the first half of the byte array like this:
myArray.Take(128).ToArray();
So now how would i get the rest o开发者_运维知识库f the array without the first 128 bytes. Is there something similar to Take()
or i just have to copy them to a new array?
You can use Skip
:
myArray.Skip(128).ToArray();
精彩评论