Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

C # วิธีสูงสุดที่สืบค้นได้


รับค่าสูงสุดจากลำดับโดยใช้วิธี Max()

สมมติว่ารายการต่อไปนี้คือรายการของเรา

List<long> list = new List<long> { 200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000 };

ใช้วิธี Max() เพื่อรับองค์ประกอบที่ใหญ่ที่สุด

list.AsQueryable().Max();

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      List<long> list = new List<long> { 200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000 };
      foreach(long ele in list)
      Console.WriteLine(ele);
      // getting largest element
      long max_num = list.AsQueryable().Max();
      Console.WriteLine("Largest number = {0}", max_num);
   }
}

ผลลัพธ์

200
400
600
800
1000
1200
1400
1600
1800
2000
Largest number = 2000