I have a list of strings that I want to sort by another list of strings and if there are items in the list that is not in the comparer list I want them as they are at the end of the list. How can I do this?
So if I have this list: List<string> {"A","T","G","F","V","E","W","Q" }
and I have a comparer: List<string> {"T","F","V","A" }
I want the result to be: List<string> {"T","F","V","A","G","E","W","Q" }
Thanks!