In this code:
Dim files() As String = Directory.GetFiles(\"C:/\") Dim files As String() = Directory.GetFiles(\"C:/\")
is there a differenc
The two are identical. If you use Reflector, you can see that they are compiled to the same IL:
.field private string[] files