Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,954 questions

51,896 answers

573 users

How to create and use a list of strings in VB.NET

2 Answers

0 votes
Module Module1

    Sub Main()

        Dim list As New List(Of String)

        list.Add("VB.NET")
        list.Add("Java")
        list.Add("PHP")
        list.Add("C#")

        For Each item As String In list
            Console.WriteLine(item)
        Next

    End Sub

End Module

' run:
' 
' VB.NET
' Java
' PHP
' C#

 



answered Sep 26, 2018 by avibootz
0 votes
Module Module1

    Sub Main()

        Dim list As New List(Of String)

        list.Add("VB.NET")
        list.Add("Java")
        list.Add("PHP")
        list.Add("C#")

        For i = 0 To list.Count - 1
            Console.WriteLine(list.Item(i))
        Next i

    End Sub

End Module

' run:
' 
' VB.NET
' Java
' PHP
' C#

 



answered Sep 26, 2018 by avibootz

Related questions

1 answer 162 views
3 answers 198 views
1 answer 65 views
1 answer 115 views
115 views asked Nov 14, 2021 by avibootz
1 answer 178 views
2 answers 225 views
2 answers 232 views
...