Enumerable.Average メソッド (IEnumerable(Int32)) (System.Linq)
Int32 値のシーケンスの平均値を計算します。 ...
SQLでは、AVGに相当します。
ソースコード
using System; using System.Linq; namespace LinqSample { class Program { static void Main(string[] args) { int[] numbers = new int[] { 1, 2, 3, 4, 5 }; // 平均を算出します。 Console.WriteLine(numbers.Average()); Console.ReadKey(); } } }