Exemplo n.º 1
0
 private static CQ ReplaceOuterWithTag(this CQ element, string tag)
 {
     element.Each (domobj => {
         CQ t = new CQ (tag);
         CQ o = new CQ (domobj);
         o.ReplaceOuterWith (t);
     });
     return element;
 }