简体   繁体   中英

Why does my VB.NET array have extra values?

I declare my array

Dim A(N) As Integer

When I loop from 1 To N or 0 To N-1 there's an extra value at one end or the other.

What's going on?

(Intended to be a canonical question/answer.)

In VB.NET arrays almost always* have a lower bound of 0 and are declared mentioning their upper bound, not their length.

They did change the VB.NET syntax early on to allow you to remind yourself if needed:

Dim A(0 To N) As Integer

That 0 can't be anything else (such as a 1 or a constant zero).

You can loop through all VB.NET array indexes using

For i = LBound(A) To UBound(A)

or, more simply,

For i = 0 To N

(*) You can use the .NET Framework to create arrays with other lower bounds, but you need to refer to them as Array and thus with late binding (and probably Option Strict Off ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM