Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the LINQ Query with OrderBy
By Nidhi Last Updated : November 11, 2024
VB.Net – LINQ Query with OrderBy
In this program, we will create a LINQ query to arrange array elements in ascending order and print them on the console screen.
Program/Source Code:
The source code to demonstrate the LINQ Query with OrderBy is given below. The given program is compiled and executed successfully.
VB.Net code to demonstrate the example of LINQ Query with OrderBy
'VB.NET program to demonstrate the
'LINQ Query with OrderBy.
Imports System
Imports System.IO
Imports System.Linq
Module Module1
Sub Main()
Dim intVals() As Integer = {50, 20, 40, 35, 10, 27, 60}
Dim result = From val In intVals Order By val
Console.WriteLine("Result: ")
For Each val As Integer In result
Console.Write(val & " ")
Next
Console.WriteLine()
End Sub
End Module
Output
Result:
10 20 27 35 40 50 60
Press any key to continue . . .
Explanation
In the above program, we created a module Module1 that contains the Main() function. The Main() function is the entry point for the program.
In the Main() function, we created an integer array that contains 7 elements. Here, we executed the LinQ query and arrange array elements into ascending order and print them on the console screen.
VB.Net LINQ Query Programs »