日期:2014-05-20 浏览次数:20804 次
int[] a = new int[] { 1, 4, 9, 3, 5, 7, 3 }; var b = a.Where((x, i) => i<a.Count()-1 && x > a[i + 1]).ToArray<int>();