[]
Registers a function that can be evaluated by this C1CalcEngine.
public void RegisterFunction(string functionName, int parmMin, int parmMax, CalcEngineFunction fn)
| Type | Name | Description |
|---|---|---|
| string | functionName | Function name. |
| int | parmMin | Minimum parameter count. |
| int | parmMax | Maximum parameter count. |
| CalcEngineFunction | fn | Delegate that evaluates the function. |
Registers a function that can be evaluated by this C1CalcEngine.
public void RegisterFunction(string functionName, int parmCount, CalcEngineFunction fn)
| Type | Name | Description |
|---|---|---|
| string | functionName | Function name. |
| int | parmCount | Parameter count. |
| CalcEngineFunction | fn | Delegate that evaluates the function. |