Using Aggregating Sum to get the total of the numbers in an array : Sum « LINQ « VB.Net






Using Aggregating Sum to get the total of the numbers in an array

  

Imports System.IO
Imports System.Reflection
Imports System.Linq
Imports System.Xml.Linq

Public Class MainClass
   Public Shared Sub Main

        Dim numbers() As Integer = {5, 4, 1, 3}

        Dim numSum = numbers.Sum()

        Console.WriteLine("The sum of the numbers is " & numSum)

   End Sub


End Class

   
    
  








Related examples in the same category

1.Sum with Linq
2.Alternative Syntax for Sum
3.Using Sum to get the total units in stock for each project category
4.Using Aggregating Sum to get the total number of characters of all words