static public xmlDoc doc_from_xml(string xml) { xmlDoc doc = new xmlDoc(); doc.load_xml(xml); return(doc); }
public static xmlDoc create_fromxml(string xml) { xmlDoc res = new xmlDoc(); res.load_xml(xml); return(res); }
public xmlDoc add(string key, xmlDoc doc) { _docs.Add(key, doc); return(doc); }