What are the differences between the following constructs? Why prefer one over the other?
Number one:
Dim byteArray(20) as Byte
Number two:
Dim byteArray() as Byte = new Byte(20) {}
Any help would be appreciated.
Thank you.
Edit - I corrected some code. "ReDim" should be "Dim".