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 of 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();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With