9 lines
151 B
VB.net
9 lines
151 B
VB.net
|
|
Module ArrayLength
|
||
|
|
|
||
|
|
Sub Main()
|
||
|
|
Dim array() As String = {"apple", "orange"}
|
||
|
|
Console.WriteLine(array.Length)
|
||
|
|
End Sub
|
||
|
|
|
||
|
|
End Module
|