C# – Sort all but first element (Linq)
To sort a list, except for the first element, you need to: This can be accomplished in a single line using Linq methods: Example – sorting a list of people Let’s say we have a list of people, such as the following: Here’s how to sort the people by first name, except for the first … Read more