示例#1
0
        public override bool Equals(object obj)
        {
            PomXmlElement other = obj as PomXmlElement;

            if (other == null)
            {
                return(false);
            }
            return(other.Element == Element);
        }
示例#2
0
 public void AddElement(PomXmlElement element)
 {
     _elem.Add(element._elem);
 }
示例#3
0
 protected XmlDocumentBase(XDocument xdoc)
 {
     _xmlDoc = xdoc;
     _root   = new PomXmlElement(this, xdoc.Root);
 }