Array split by range?
- by acidzombie24
I have an array, i don't know the length but i do know it will be =48bytes. The first 48bytes are the header and i need to split the header into two.
Whats the easiest way? I am hoping something as simple as header.split(32); would work ([0] is 32 bytes [1] being 16 assuming header is an array of 48bytes)
using .NET