OpenBve.FunctionScripts.GetPostfixNotationFromInfixNotation C# (CSharp) Méthode

GetPostfixNotationFromInfixNotation() static private méthode

static private GetPostfixNotationFromInfixNotation ( string Expression ) : string
Expression string
Résultat string
		internal static string GetPostfixNotationFromInfixNotation(string Expression) {
			string Function = GetFunctionNotationFromInfixNotation(Expression, true);
			return GetPostfixNotationFromFunctionNotation(Function);
		}