Using Aggregating Average to get the average length of the words in the array : Average « LINQ « VB.Net






Using Aggregating Average to get the average length of the words in the array

  

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

Public Class MainClass
   Public Shared Sub Main

        Dim words() As String = {"this", "is", "a test"}

        Dim averageLength = words.Average(Function(w) w.Length)

        Console.WriteLine("The average word length is " & averageLength & " characters.")

   End Sub


End Class

   
    
  








Related examples in the same category

1.Get the average salary
2.Using Aggregating Average to get the average of all numbers in an array