Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# 쿼리 가능한 최소 메서드

<시간/>

C#에서 Min() 메서드를 사용하여 시퀀스에서 최소값을 가져옵니다.

다음은 우리의 목록입니다.

List<long> list = new List<long> { 1, 2, 3, 4, 5, 6 };

이제 Queryable Min() 메서드를 사용하여 최소 요소를 가져옵니다.

list.AsQueryable().Min();

예시

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      List<long> list = new List<long> { 1, 2, 3, 4, 5, 6 };
      foreach(long ele in list) {
         Console.WriteLine(ele);
      }
      // getting lowest element
      long min_num = list.AsQueryable().Min();
      Console.WriteLine("Smallest number = {0}", mix_num);
   }
}