Important
Before calling this method make sure that both delimiters (Decimal Symbol and Argument Separator)
are correctly specified in the global parameters.
Converts a mathematical expression represented as a string to an array of expression components in reverse Polish notation (RPN).
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>