This Array Method Works for only One-dimensional Arrays

You tried to execute a method that operates only on one-dimensional arrays on a multi-dimensional array.


Example

The following code tries to use the Append method with a two-dimensional array.

Dim aTest(3,3) as String
Dim i,j as Integer
For i=0 to 3
 For j=0 to 3
  aTest(i,j)= Str(i)+ Str(j)
 Next
Next
aTest.Append "Frank" //can't use Append here.

See Also

Append, Array, IndexOf, Insert, Join, Pop, Remove, Sort, Split methods.