I have a list of dynamic of size 85160 (but it can change). I'd like to split it into 3 equal sized lists.
I was thinking of getting the size of the list. So that'd just be:
int count = rawData.count;
Then I could divide that by 3; but i'm not sure how i'd stick the first set into one list, then the next etc.
Best way of doing it?