Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In this code:

Dim files() As String = Directory.GetFiles("C:/")

Dim files As String() = Directory.GetFiles("C:/")

is there a difference between the statements?

share|improve this question
2  
Back when VB didn't have parameterized constructors, Dim files as String() was obvious. But now with constructors its probably preferable to use Dim files() as String to avoid confusion. – Josh Einstein Feb 11 '10 at 4:00

3 Answers

up vote 5 down vote accepted

The two are identical. If you use Reflector, you can see that they are compiled to the same IL:

.field private string[] files
share|improve this answer

They produce exactly the same thing - just two alternative forms of declaration.

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.