ConversionTToPostfix Method
Converts math expression represented as a string to the array of expression
components in reverse polish notation (RPN).
Namespace: SMath.ManagerAssembly: SMath.Manager (in SMath.Manager.dll) Version: 1.2.9018.0
public Stack<T> ToPostfix(
ref string value
)
Public Function ToPostfix (
ByRef value As String
) As Stack(Of T)
public:
Stack<T>^ ToPostfix(
String^% value
)
member ToPostfix :
value : string byref -> Stack<'T>
- value String
-
String of the mathematical expression.
StackT
Return an array of the expression components in RPN order.
Important to be sure that both delimiters - Decimal Symbol and Argument
Separator - are correctly specified in the global parameters.