List<int> list1 = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; var maxValue = list1.Max();. 運算結果為:maxValue=10。 (2)帶Lambda表達式書寫形式的Max方法 ...
確定! 回上一頁