Using Aggregating Average to get the average of all numbers in an array : Average « LINQ « VB.Net






Using Aggregating Average to get the average of all 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 = {1,2,3,4,5,6,7,8,9,0}

        Dim averageNum = numbers.Average()

        Console.WriteLine("The average number is " & averageNum & ".")

   End Sub


End Class

   
    
  








Related examples in the same category

1.Get the average salary
2.Using Aggregating Average to get the average length of the words in the array