public void SetFather(Tag tag)
 {
     Father = tag;
 }
 public virtual void AddTag(Tag child)
 {
     Children.Add(child);
     child.Father = this;
 }
 public Tag(TagType type)
 {
     Type = type;
     SetContent("");
     Father = null;
 }