use Sum to find the total of all of the numbers in an integer array. : Sum « LINQ « C# / C Sharp






use Sum to find the total of all of the numbers in an integer array.

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {
        int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };

        double numSum = numbers.Sum();

        Console.WriteLine("The sum of the numbers is {0}.", numSum);
    }
}

 








Related examples in the same category

1.use Linq Sum to sum an array
2.Sum with Projection
3.Sum with integers
4.Sum with object property
5.Grouped Sum