Initialises the parser with a TextReader for parsing with multiple expressions. This method does not perform any parsing. Use continueParsing to parse the first expression and subsequent expressions from the input.

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

Syntax

C#
public void InitMultiParse(
	TextReader reader
)
Visual Basic (Declaration)
Public Sub InitMultiParse ( _
	reader As TextReader _
)
Visual C++
public:
void InitMultiParse(
	TextReader^ reader
)

Parameters

reader
Type: System.IO..::.TextReader
TextReader from which equations separated by semi-colons will be read.

See Also