public XMLNodeEx(XMLNodeEx _parent, string _nodeName) { parent = _parent; nodeName = _nodeName; node = parent.GetChildXmlNode(nodeName); attributes = new AttributeEx(this); }
public XMLNodeEx(XMLNodeEx _parent, int _index) { xmlFileName = _parent.xmlFileName; parent = _parent; node = parent.GetChildXmlNode(_index); attributes = new AttributeEx(this); }
public XMLNodeEx() { attributes = new AttributeEx(this); }