C#程序从数组中查找最大的元素

声明一个数组-

int[] arr = { 20, 50, -35, 25, 60 };

现在要从数组中获取最大的元素,请使用Max()方法-

arr.Max());

这是完整的代码-

示例

using System;
using System.Linq;
class Demo {
   static void Main() {
      int[] arr = { 20, 50, -35, 25, 60 };
      Console.WriteLine(arr.Max());
   }
}

输出结果

60