Architect's Log

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

IEnumerable.LongCountメソッド

Enumerable.LongCount(TSource) メソッド (IEnumerable(TSource), Func(TSource, Boolean)) (System.Linq)
シーケンス内で条件を満たす要素の数を表す Int64 を返します。

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

ソースコード

using System;
using System.Linq;

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

実行結果