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,851 questions

51,772 answers

573 users

How to declare, initialize and print two-dimensional (2D) array of strings in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim s2d(,) As String = New String(,) {{"C", "C++"},
                                              {"C#", "VB.NET"},
                                              {"PHP", "JavaScript"},
                                              {"Java", "Python"}}

        Dim bound0 As Integer = s2d.GetUpperBound(0)
        Dim bound1 As Integer = s2d.GetUpperBound(1)

        For i As Integer = 0 To bound0
            For j As Integer = 0 To bound1
                Console.Write(s2d(i, j))
                Console.Write(" ")
            Next
            Console.WriteLine()
        Next

    End Sub

End Module

'run:
' 
' C C++
' C# VB.NET
' PHP JavaScript
' Java Python

 



answered Mar 3, 2016 by avibootz
...