Mega Code Archive

 
Categories / VB.Net / LINQ
 

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