I am attempting to split a list into a series of smaller lists.
My Problem: My function to split lists doesn\'t split them into lists of the correct
how about:
while(locations.Any()) { list.Add(locations.Take(nSize).ToList()); locations= locations.Skip(nSize).ToList(); }