Created
November 11, 2018 21:38
-
-
Save canokay/5b08ea9e09910a83d13836b4d76664e7 to your computer and use it in GitHub Desktop.
Visual Basic Multidimensional Arrays Example
This file contains hidden or 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
Public Class Form1 | |
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click | |
Dim matris(,) As Integer = {{1, 2}, {3, 4}} | |
End Sub | |
End Class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment