Using Aggregating Max to get the length of the longest 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 longestLength = Aggregate word In words _ Into Max(word.Length) Console.WriteLine("The longest word is " & longestLength & " characters long.") End Sub End Class
1. | Grouped Max | ||
2. | Alternative Syntax for Grouped Max | ||
3. | Max and nested From clause | ||
4. | Alternative Syntax for Max Grouping | ||
5. | Using Aggregating Max to get the highest number in an array. |