Something like:
Dim portion As Byte() = New Byte(length - 1) {}
Array.Copy(originalArray, index, portion, 0, length)
The "- 1" is because of VB taking the last element index rather than the size.
EDIT: I missed the bit about not wanting to use Array.Copy
. (Was it there when I posted the answer, or did you edit it in within the five minutes "grace period"?)
Just wrap this into a method if you really need to. While there are alternatives using LINQ etc, this will be the most efficient way of doing it if you genuinely want a new array.
There's also ArraySegment(Of T)
if you're happy to use a wrapper around the existing array - but that's not the same thing.