OutputVar := MfParams.GetArgCount(args*)
Get the count of arguments in vardic parameter args*.
args*
The vardic args object to get the count for
Returns the count of the args* as integer. If args are empty then 0 is returned.
Static Method
MyFunction(args*)
{
cnt := MfParams.GetArgCount(args*)
; some other code
}