VB.Net program to generate the sequence that contains one repeated value

Here, we are going to learn how to generate the sequence that contains one repeated value in VB.Net?
Submitted by Nidhi, on February 02, 2021 [Last updated : March 08, 2023]

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 »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.