I have an IEnumerable collection. Lets say it contains 5 points (in reality it is more like 2000)
IEnumerable
I want to order this collection so that a spe
Another alternative to the Linq method shown by ulrichb would be to use the Queue Class (a fifo collection) dequeue to your index, and enqueue the ones you have taken out.