Specify the Array type and start copying from 1. Although theoretically it could be any number depending on how you got the Byte[*].
len = (Array)byteWithStar.Length; byte[] arr = new byte[len]; Array.Copy((Array)byteWithStar, 1, arr, 0, len);