J
Jerry Camel
VB seems to accept both versions of this declaration... Are they
equivalent?
Dim Bytes() As Byte = New Byte(Part1.Length + Part2.Length) {} 'Without the
braces, vb complains that Byte has no constructor.
Dim Bytes(Part1.Length + Part2.Length) As Byte
Thanks,
Jerry
equivalent?
Dim Bytes() As Byte = New Byte(Part1.Length + Part2.Length) {} 'Without the
braces, vb complains that Byte has no constructor.
Dim Bytes(Part1.Length + Part2.Length) As Byte
Thanks,
Jerry