ConversionTToPostfix Method

Converts math expression represented as a string to the array of expression components in reverse polish notation (RPN).

Definition

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

Parameters

value  String
String of the mathematical expression.

Return Value

StackT
Return an array of the expression components in RPN order.

Remarks

Important to be sure that both delimiters - Decimal Symbol and Argument Separator - are correctly specified in the global parameters.

See Also