Constructs a new operator, with a different name and symbol

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

Syntax

C#
public Operator(
	string name,
	string symbol,
	IPostfixMathCommand pfmc,
	int flags
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	symbol As String, _
	pfmc As IPostfixMathCommand, _
	flags As Integer _
)
Visual C++
public:
Operator(
	String^ name, 
	String^ symbol, 
	IPostfixMathCommand^ pfmc, 
	int flags
)

Parameters

name
Type: System..::.String
name of operator, must be unique, used when describing operator
symbol
Type: System..::.String
printable name of operator, used for printing equations
pfmc
Type: SingularSys.Jep..::.IPostfixMathCommand
postfix math command for operator
flags
Type: System..::.Int32
set of flags defining the properties of the operator

See Also