Created
December 14, 2013 20:32
-
-
Save ferlyz05/7964574 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim s As String = "" | |
Dim bound0 As Integer = penampunganNilaiHujan.GetUpperBound(0) | |
Dim bound1 As Integer = penampunganNilaiHujan.GetUpperBound(1) | |
' Loop over all elements. | |
For i As Integer = 0 To bound0 | |
For x As Integer = 0 To bound1 | |
' Get element. | |
Dim s1 As String = penampunganNilaiHujan(i, x) | |
s = s & s1 & "," | |
Next | |
s = s & Environment.NewLine | |
Next | |
MsgBox(s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment