I have a byte[] array of one size, and I would like to truncate it into a smaller array?
I just want to chop the end off.
You could use Array.Resize, but all this really does is make a truncated copy of the original array and then replaces the original array with the new one.