示例#1
0
        public bool AddTemplate(string name, CombinedTemplateState template)
        {
            if (Contents.ContainsKey(name))
            {
                return(false);
            }

            Contents.Add(name, template);
            return(true);
        }
示例#2
0
 public bool TryGetTemplate(string templateName, out CombinedTemplateState template)
 {
     return(Contents.TryGetValue(templateName, out template));
 }