I have an unknown size array and I want to fragment it to small sized arrays.
For example 733 items array will become list of 7 100 item arrays and one 33 item array.
List<List<T>> Split(List<T> list, uint sublistsize)
I can write some code to do this but is there something built in?