hi i have two string list like this:
var testbiggerlist = new List<string>{ "Security", "StaffAndServices", "Cost", "Comfort" ,"Internet",
"Pleasure",
"NewsAndInfo",
"Cleanliness",
"Equipment",
"Parking"};
var testsmallerlist = new List<string> {"Equipment", "Comfort", "StaffAndServices"};
i want to sort the second list based on the first list,i mean the order of the common elemets should be like first one,
what should i do?
Go to the complete details ...