📜  c# array max - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:04.286000             🧑  作者: Mango

代码示例3
// Find the max number of this array using LINQ
 Console.WriteLine("Find the max number of this Array using C# build in function { 1,2,3,4,5,6,7,8,9}");
 int[] array = new[] { 1,2,3,4,5,6,7,8,9};
 var result= array.Select((n, i) => new { Value = n, Index = i }).FirstOrDefault(s => s.Value == array.Max());
 Console.WriteLine($"Max Number Of this Array:{result?.Value} and index no: {result?.Index}");