how to select specific range from byte array
arrays, c#
Solution
You can use `Buffer.BlockCopy` or `Array.Copy`.
Problem
I can't find any direct function (like mybytearray.copy(offset, count)) that select range of bytes from byte array. So, do I have to loop through to copy required bytes?