dynamic array

  1. A

    Directly and dynamically assigning values to an array

    I am trying to figure out how to assign a 1-dimensional array value I get from a function directly into an element in a 2-dimensional array. An example would be Dim Results(7)() as Double Results(0) = myFunction() ' returns an array with 5 doubles What is the correct syntax for this, if any...
Back
Top