In this code:
Dim files() As String = Directory.GetFiles(\"C:/\") Dim files As String() = Directory.GetFiles(\"C:/\")
is there a differenc
They produce exactly the same thing - just two alternative forms of declaration.