Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Size of array in Visual Basic?

Tags:

arrays

vb.net

I've tried this code in VB:

Dim a(1) As Byte
Console.WriteLine(a.Length)

The output is "2". Anyone any idea why?


1 Answers

If you are used to C/C++/C# languages you are used that when declaring an array to initialize it with the number of elements in the array.

C# : byte a[] = new byte[1]

will declare a byte array with 1 element (upperBound = 0)

The behavior is different in VB where, when declaring an array the parameter used in initialization represents the UpperBound of the array.

VB.NET: Dim a(1) As Byte

will declare a byte array with 2 elements (upperBound = 1)

like image 64
AlexDrenea Avatar answered Sep 05 '25 09:09

AlexDrenea



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!