Short list with things to finish for D2

Ellery Newcomer ellery-newcomer at utulsa.edu
Wed Nov 25 14:51:24 PST 2009


On 11/25/2009 01:40 PM, Denis Koroskin wrote:
>
> IIRC lower bound is 1 by default in VB and therefore b(0) is illegal.
>

Nope.

Dim b(8) as String

is equivalent to

Dim b(0 to 8) as String

and therefore b(0) is very legal.



More information about the Digitalmars-d mailing list