Using Aggregating Max to get the highest number in an array. : Max « LINQ « VB.Net






Using Aggregating Max to get the highest number 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 maxNum = numbers.Max()

        Console.WriteLine("The maximum number is " & maxNum & ".")
   End Sub


End Class

   
    
  








Related examples in the same category

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 length of the longest word in an array