C# Enumerable Sum(IEnumerable, Func>)

Description

Computes the sum of the 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> Sum<TSource>(
  this IEnumerable<TSource> source,
  Func<TSource, Nullable<decimal>> selector
)

Parameters

  • TSource - The type of the elements of source.
  • source - A sequence of values that are used to calculate a sum.
  • selector - A transform function to apply to each element.

Example


//  w w  w. ja v a2s .c  om
using System;
using System.Linq;
using System.Collections.Generic;
public class MainClass
{
    public static void Main(String[] argv)
    {
        List<Package> packages =
            new List<Package> 
           { new Package { Company = "A", Weight = 25M },
             new Package { Company = "B", Weight = 18M },
             new Package { Company = "C", Weight = 61M },
             new Package { Company = "D", Weight = 33M } };

        Console.WriteLine("The total weight of the packages is: {0}", packages.Sum(pkg => pkg.Weight));

    }
}

class Package
{
    public string Company { get; set; }
    public decimal? Weight { get; set; }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Linq »




Enumerable