Sets the value of the implicit multiplication option. If this option is set to true before parsing, implicit multiplication will be allowed. That means that an expression such as "1 2" is valid and is interpreted as "1*2".

The default value is true.

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

Syntax

C#
public bool ImplicitMul { get; set; }
Visual Basic (Declaration)
Public Property ImplicitMul As Boolean
Visual C++
public:
property bool ImplicitMul {
	bool get ();
	void set (bool value);
}

See Also