Ejemplo n.º 1
0
 protected bool Equals(XmlNamedElement obj)
 {
     if (ReferenceEquals(null, obj))
     {
         return(false);
     }
     if (ReferenceEquals(this, obj))
     {
         return(true);
     }
     return(Equals(obj.Name, Name));
 }
Ejemplo n.º 2
0
 protected XmlNamedElement(XmlNamedElement source)
     : this(source.Name)
 {
 }