Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

names

Module VBModule
    Dim a As Integer
    Dim firstname() As String = {"james", "sam", "jack", "lee", "moriss", "fape", "king", "jane", "mac", "matthew"}
    Dim lastname() As String = {"chong", "yan", "lei", "chen", "hole", "king", "kong", "willson", "don", "los"}
    Sub Main()
        For a = 0 To 9
            Console.WriteLine(firstname(a) + "" + lastname(a))
        Next
        Console.ReadKey()
    End Sub
  
End Module

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.