Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the Take() extension method
By Nidhi Last Updated : November 13, 2024
VB.Net – Take() Extension Method
In this program, we will use the Take() extension method of the "System.Linq" namespace to get the specified number of elements from the integer array.
Program/Source Code:
The source code to demonstrate the Take() extension method is given below. The given program is compiled and executed successfully.
VB.Net code to demonstrate the example of Take() extension method
'VB.NET program to demonstrate the Take() extension
'methods of "System.Linq" namespace.
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 = intVals.Take(4)
Console.WriteLine("Result: ")
For Each val As Integer In result
Console.Write(val & " ")
Next
Console.WriteLine()
End Sub
End Module
Output
Result:
50 20 40 35
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 get the first 4 array elements using the Take() extension method of the "System.Linq" namespace. After that, we printed the first 4 elements of the array on the console screen.
VB.Net LINQ Query Programs »