Hi,
I have a collection of numbers starting from 1-9. I would like to reshuffle the collection so that the first object in the collection is 6 and everything before 6 is appended to the end of the list e.g. if if the first object is 3 than the collection would look like this: 345678912.
How can i do this using C# and linq?
Any help would be greatly appreciated.
Lee