1. Moudle3.vb
Module Module3
Sub Main()
Dim array(3) As String
array(0) = "dot"
array(1) = "net"
array(2) = "perls"
array(3) = CStr(2010)
' Display.
For Each element As String In array
Console.WriteLine(element)
Console.ReadLine()
Next
End Sub
End Module
https://www.youtube.com/channel/UCKLRUr6U5OFeu7FLOpQ-FSw/videos
Module Module3
Sub Main()
Dim array(3) As String
array(0) = "dot"
array(1) = "net"
array(2) = "perls"
array(3) = CStr(2010)
' Display.
For Each element As String In array
Console.WriteLine(element)
Console.ReadLine()
Next
End Sub
End Module
https://www.youtube.com/channel/UCKLRUr6U5OFeu7FLOpQ-FSw/videos

0 comments
Post a Comment