Exemplo n.º 1
0
 public Template(string name, string content)
 {
     this.Name = name;
     this.Content = content;
     this.Variables = new ValuePool();
     this.InnerTemplates = new Dictionary<string, Template>();
 }
Exemplo n.º 2
0
 public Template()
 {
     this.Name = "Name";
     this.Content = "Content";
     this.Variables = new ValuePool();
     this.InnerTemplates = new Dictionary<string, Template>();
 }