Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

IEnumerable.Minメソッド

Enumerable.Min メソッド (IEnumerable(Int32)) (System.Linq)
Int32 値のシーケンスの最小値を返します。

SQLでは、MINに相当します。

ソースコード

using System;
using System.Linq;

namespace LinqSample {
    class Program {
        static void Main(string[] args) {
            int[] numbers = { 1, 2, 3, 4, 5 };
            Console.WriteLine(numbers.Min());
            Console.ReadKey();
        }
    }
}

実行結果