Exemplo n.º 1
0
 public TemplateAttributeReplacer(string template)
 {
     if (template == null)
     {
         throw new ArgumentNullException(String.Format(Literals.ArgumentNullMsg, "template"));
     }
     this.template = new T.Template(template);
 }
Exemplo n.º 2
0
 /** Clone a prototype template.
  *  Copy all fields except DebugState.
  */
 public Template(Template prototype)
     : this(prototype, false)
 {
 }