C# Enumerable Average(IEnumerable, Func>)

Description

Computes the average of a sequence of nullable Decimal values that are obtained by invoking a transform function on each element of the input sequence.

Syntax


public static Nullable<decimal> Average<TSource>(
  this IEnumerable<TSource> source,
  Func<TSource, Nullable<decimal>> selector
)

Parameters

  • TSource - The type of the elements of source.
  • source - A sequence of values to calculate the average of.
  • selector - A transform function to apply to each element.

Example

The following code example demonstrates how to use Average(IEnumerable, Func) to calculate an average.


/*from   w  w w. j a v a 2  s  .c  om*/
using System;
using System.Linq;
using System.Collections.Generic;
public class MainClass{
  public static void Main(String[] argv){  
    string[] numbers = { "10007", "37", "123123123123" };
    double average = numbers.Average(num => Convert.ToInt64(num));
    Console.WriteLine("The average is {0}.", average);

  }
}
    

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Linq »




Enumerable