Checks the number of parameters of the function. Functions which set numberOfParameter=-1 should overload this method

Namespace:  SingularSys.Jep.Functions
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public virtual bool CheckNumberOfParameters(
	int n
)
Visual Basic (Declaration)
Public Overridable Function CheckNumberOfParameters ( _
	n As Integer _
) As Boolean
Visual C++
public:
virtual bool CheckNumberOfParameters(
	int n
)

Parameters

n
Type: System..::.Int32
number of parameters function will be called with.

Return Value

false if an illegal number of parameters is supplied, true otherwise.

Implements

IPostfixMathCommand..::.CheckNumberOfParameters(Int32)

See Also