Fusionar dos listas usando Linq

var result = list1.Concat(list2).OrderBy(x => x.Elevation).ToList();
PrashantUnity