Home »
VB.Net »
VB.Net Programs
VB.Net program to generate the sequence that contains one repeated value
By Nidhi Last Updated : November 15, 2024
VB.Net – Generating the sequence that contains one repeated value
In this program, we will use the Repeat() method of the Enumerable class to generate the sequence that contains one repeated value.
Program/Source Code:
The source code to generate the sequence that contains one repeated value is given below. The given program is compiled and executed successfully.
VB.Net code to generate the sequence that contains one repeated value
'VB.NET program to generate the sequence
'that contains one repeated value.
Module Module1
Sub Main()
Dim intValues = Enumerable.Repeat(Of Integer)(786, 5)
Dim strValues = Enumerable.Repeat(Of String)("India", 5)
Console.WriteLine("Repeated integer elements:")
For i = 0 To intValues.Count() - 1 Step 1
Console.Write(intValues.ElementAt(i) & " ")
Next
Console.WriteLine()
Console.WriteLine("Repeated string elements:")
For i = 0 To strValues.Count() - 1 Step 1
Console.Write(strValues.ElementAt(i) & " ")
Next
Console.WriteLine()
End Sub
End Module
Output
Sequence of elements:
Repeated integer elements:
786 786 786 786 786
Repeated string elements:
India India India India India
Press any key to continue . . .
Explanation
In the above program, we created a module Module1 that contains a Main() function. The Main() function is the entry point for the program.
In the Main() function, We generated the sequence that contains one repeated value using the Repeat() method of Enumerable class and prints those elements on the console screen.
VB.Net LINQ Query Programs »