If a certain function parameter is passed by 'ref' how to make following parameters to be non-ref?

In reply to mmaciag:

The implicit direction of the first argument is input. The implicit direction of the successive arguments take on the direction of the preceding argument. Directions are: input, output, inout, and ref.

1 Like