ENDPARAMS

End parameter list

WTSupported in traditional Synergy on Windows
WNSupported in Synergy .NET on Windows
USupported on UNIX
VSupported on OpenVMS
ENDPARAMS

Discussion

ENDPARAMS is an optional keyword that can be added to the end of any parameter list to indicate the list is terminating. If ENDPARAMS is not used, the first declaration that is not a parameter declaration terminates the parameter list.

Example

The example below explicitly terminates the parameter list after parm2.

public method meth1, void
    parm1       ,int
    parm2       ,int
    endparams
proc
end