S
steven
Hello,
I have an array declaration:
dim a(10) as string
To fill this array, I could use these lines:
a(0) = "x"
a(1) = "yy"
a(2) = "zzz"
....
but is there another notation instead of this to save some space?
Something like:
a = new array("x", "yy", "zzz", ...)
(offcourse the values "x", "yy", and "zzz", are simple examples)
Thanks,
Steven
I have an array declaration:
dim a(10) as string
To fill this array, I could use these lines:
a(0) = "x"
a(1) = "yy"
a(2) = "zzz"
....
but is there another notation instead of this to save some space?
Something like:
a = new array("x", "yy", "zzz", ...)
(offcourse the values "x", "yy", and "zzz", are simple examples)
Thanks,
Steven