A ParamArray's Element Type may not be Another Array

From Xojo Documentation

Error message

You tried to use the ParamArray keyword with an array parameter in a method declaration.

Sample Code

This method declaration uses the ParamArray keyword with an array parameter. There's no need to do this. You can pass an indefinite number of elements simply by declaring the parameter ParamArray OR by passing an array to the method. You cannot use both techniques at once.

Sub myMethod(ParamArray b() As String)

See Also

ParamArray keyword; Dim statement.