2
What’s the difference between declaring a matrix like this:
'C#
string MinhaMatriz[] = []
'VB
Dim MinhaMatriz() As String = { }
and so:
'C#
string[] MinhaMatriz = []
'VB
Dim MinhaMatriz As String() = { }
or so:
'C#
System.Array<string> MinhaMatriz
'VB
Dim MinhaMatriz As System.Array(Of String)
Use the Gettype (Object inheritance) method and check for yourself. I believe that despite the various forms of statement, it does not change at all what the object is.
– Caique C.