Gabungkan Dua Daftar Menggunakan Linq

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