I have a master list of colors:
List<string> completeList = new List<string>{"red", "blue", "green", "purple"};
I'm passing in a List of existing colors of a product
List<string> actualColors = new List<string>{"blue", "red", "green"};
How do I get a list back that is in the order of the completeList? (red,blue,green)