E
et
It seems that Arrays is one of those things that got more difficult with
..net. How can you add an item to an array? The examples I found say you
have to declare the array at the same time you set its values, which doesn't
help.
I have a public array declared in the declarations section of the module:
Dim arrKeyFields(,,) as String
Note that you cannot do "New" String
Then in a procedure, I tried to
"arrKeyFields.Add" and it tells me Add is not a member of System.Array.
So how do I add values to the array?
..net. How can you add an item to an array? The examples I found say you
have to declare the array at the same time you set its values, which doesn't
help.
I have a public array declared in the declarations section of the module:
Dim arrKeyFields(,,) as String
Note that you cannot do "New" String
Then in a procedure, I tried to
"arrKeyFields.Add" and it tells me Add is not a member of System.Array.
So how do I add values to the array?