Пример #1
0
        public string RepairTemplate(string text)
        {
            if (TemplatedKey != null)
            {
                return(TemplatedKey.RepairTemplate(text));
            }

            return(text);
        }
Пример #2
0
        public string Untemplate(string text)
        {
            if (TemplatedKey != null)
            {
                return(TemplatedKey.Untemplate(text));
            }

            return(text);
        }