Creating an Array: Difference between revisions

no edit summary
(→‎[[Visual Basic .Net]]: Fixed capitalization issue, which fixed the section title link.)
No edit summary
Line 313:
'''Compiler:''' [[Visual Studio .NET]] 2005
Dim myArray() as String = New String() {"Hello", "World", "!"}
 
==[[VBScript]]==
[[VBScript]]
 
Dim myArray(2)
myArray(0) = "Hello"
myArray(1) = "World"
myArray(2) = "!"
Anonymous user