I have a byte array in memory, read from a file. I would like to split the byte array at a certain point (index) without having to just create a new byte array and copy eac
FYI. System.ArraySegment structure basically is the same thing as ArrayView in the code above. You can use this out-of-the-box structure in the same way, if you'd like.