April 2002
Intermediate to advanced
688 pages
19h 51m
English
ParamArray Attribute
System.ParamArrayAttribute
Parameter
Indicates that the parameter represents a parameter array — i.e., a variable number of arguments.
The same effect is achieved by using the
ParamArray keyword in a function or subroutine
declaration. In fact, the ParamArray keyword is
compiled into the ParamArray attribute.
If you do use the attribute, it must appear as
<ParamArrayAttribute> rather than
<ParamArray>, since
ParamArray is a Visual Basic keyword.
New( )
None