Beispiel #1
0
        public string ToString(VariableContext ctx)
        {
            if (ctx.IsDefined(Name))
            {
                var value = ctx.Get(Name).ToString();
                return($"[{value}]");
            }

            return(Name);
        }