System.TermInfo.ParameterizedStrings.Evaluate C# (CSharp) Method

Evaluate() public static method

Evaluates a terminfo formatting string, using the supplied arguments.
public static Evaluate ( string format ) : string
format string The format string.
return string
            public static string Evaluate(string format, params FormatParam[] args)
            {
                if (format == null)
                {
                    throw new ArgumentNullException(nameof(format));
                }
                if (args == null)
                {
                    throw new ArgumentNullException(nameof(args));
                }

                // Initialize the stack to use for processing.
                Stack<FormatParam> stack = t_cachedStack;
                if (stack == null)
                {
                    t_cachedStack = stack = new Stack<FormatParam>();
                }
                else
                {
                    stack.Clear();
                }

                // "dynamic" and "static" variables are much less often used (the "dynamic" and "static"
                // terminology appears to just refer to two different collections rather than to any semantic
                // meaning).  As such, we'll only initialize them if we really need them.
                FormatParam[] dynamicVars = null, staticVars = null;

                int pos = 0;
                return EvaluateInternal(format, ref pos, args, stack, ref dynamicVars, ref staticVars);

                // EvaluateInternal may throw IndexOutOfRangeException and InvalidOperationException
                // if the format string is malformed or if it's inconsistent with the parameters provided.
            }

Same methods

TermInfo.ParameterizedStrings::Evaluate ( string format, FormatParam arg ) : string
TermInfo.ParameterizedStrings::Evaluate ( string format, FormatParam arg1, FormatParam arg2 ) : string