In this code:
Dim files() As String = Directory.GetFiles(\"C:/\") Dim files As String() = Directory.GetFiles(\"C:/\")
is there a differenc
Both are the same
Dim files() As String = Directory.GetFiles("C:/") Dim files As String() = Directory.GetFiles("C:/")
Both will declare an array and store all files name in C:\ directory