Using Aggregating Min to get the length of the shortest word in an array : Min « LINQ « VB.Net






Using Aggregating Min to get the length of the shortest word in an array

  

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

Public Class MainClass
   Public Shared Sub Main

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

        Dim shortestWord = Aggregate word In words _
                           Into Min(word.Length)

        Console.WriteLine("The shortest word is " & shortestWord & " characters long.")
   End Sub


End Class

   
    
  








Related examples in the same category

1.Grouped Min
2.Min and let clause
3.Using Aggregating Min to get the lowest number in an array