使用Array.IndexOf排序。
如:List<int> lst=new List<int>{14,8,9,78}; 按 78,8,9,14排序。
lst = lst.OrderBy(t=>Array.IndexOf(new []{78,8,9,14},t)).ToList();