I have 2 list objects, one is just a list of ints, the other is a list of objects but the objects has an ID property.
What i want to do is sort the list of objects b
Another LINQ-approach:
var orderedByIDList = from i in ids join o in objectsWithIDs on i equals o.ID select o;