Dim FilesA As String()
Dim FilesB() As String
What is the data type for FilesA? What is the difference between above two declarations? Can they be used interchangeably?
Dim FilesA As String()
Dim FilesB() As String
What is the data type for FilesA? What is the difference between above two declarations? Can they be used interchangeably?
They both are the same. They're just different kind of declaration. Both will declare an array.