In this code:
Dim files() As String = Directory.GetFiles("C:/")
Dim files As String() = Directory.GetFiles("C:/")
is there a difference between the statements?
|
|
The two are identical. If you use Reflector, you can see that they are compiled to the same IL:
|
|||
|
|
|
They produce exactly the same thing - just two alternative forms of declaration. |
|||
|
|
|
Both are the same
Both will declare an array and store all files name in C:\ directory |
|||
|
|