M
Miffed
Can anyone please tell me the difference between:
Dim myarray As String() = {"abc", "def", "ghi"}
and
Dim myarray As [String]() = {"abc", "def", "ghi"} ' note square brackets
The latter appears in an o'reilly book, the former is what makes sense to
me. They both appear to be semantically the same when used.
Dim myarray As String() = {"abc", "def", "ghi"}
and
Dim myarray As [String]() = {"abc", "def", "ghi"} ' note square brackets
The latter appears in an o'reilly book, the former is what makes sense to
me. They both appear to be semantically the same when used.
