Conversion<T>.ToPostfix Method

Converts a mathematical expression represented as a string to an array of expression components in reverse Polish notation (RPN).

  Important

Before calling this method make sure that both delimiters (Decimal Symbol and Argument Separator) are correctly specified in the global parameters.

Definition

Namespace: SMath.Manager
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.73.9126.0
C#
public Stack<T> ToPostfix(
	ref string value
)

Parameters

value  String
String containing a mathematical expression.

Return Value

Stack<T>
An array of expression components in RPN order.

See Also