I have one array which is base 1 (rather than 0) and I am trying to use
array.copy to copy it into a new array. I get the error:
Unable to cast object of type 'System.Byte[*]' to type 'System.Byte[]'.
I think this is because the new array, by default is base 0. Without
creating a wasteful loop and handling byte for byte, how can I create a base
0 array from a base 1 array?
-Jerry