I have been working with lists in C# and I was wondering how to go about easily sorting a list that doesn't always have values for specific fields.
If, for instance, there was a list of people and each of them had a DateOfBirth and I wanted to sort all of the people, even those without that specific field, but I would want those to be seperated from the original group (those with DOB).
I know that this could probably be done with LINQ but I am not really sure how to approach it.
Any help would be greatly appreciated!