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: I’ll show a full example and explain how this works. Example – sorting a list of people Let’s say we have a list of people, such as the following: Here’s how to … Read more