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 can't truncate an array in C#. They are fixed in length.
If you want a data structure that you can truncate and acts like an array, you should use List. You can use the List.RemoveRange method to achieve this.
List