Return the number of local arguments that a function is expecting.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.7
Syntax FUNCTION FParamCount(
symFunction AS STRING
) AS DWORD
public static uint FParamCount(
string symFunction
)
Request Example
View SourceParameters
- symFunction
- Type: String
The name of the function to examine.
Return Value
Type:
UInt32The number of arguments that a method is expecting.
RemarksNote that you can't call functions that are overloaded.
And unlike in VO this function can also be used to return the number of parameters for typed functions.
See Also