Lambda 表达式型的排序法

int[] arry = {3,9,5,7,64,51,35,94 }; foreach (int i in arry.OrderBy(i => i)) Console.WriteLine(i); Console.ReadKey(); 其内容实现的根本是委托delegate
原文地址:https://www.cnblogs.com/shangguanjinwen/p/3682285.html