Possible Duplicate:
What’s different between Dim files() As String and Dim files As String()?
Are these two statements equivalent? They seem to behave the same, but is there a difference in the resulting “x”?
Dim x() As Byte
Dim x As Byte()
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They’re exactly the same, and you can see that if you examine them with Reflector. They both compile to the same IL.
See also this question, which is identical if you change
BytetoString.