Checks the number of parameters of the function. This method is called during the parsing of the equation to check syntax. Functions which set numberOfParameter=-1 should overwrite this method.

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

Syntax

C#
bool CheckNumberOfParameters(
	int n
)
Visual Basic (Declaration)
Function CheckNumberOfParameters ( _
	n As Integer _
) As Boolean
Visual C++
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.

See Also