Ejemplo n.º 1
0
 public override Boolean Equals(Object obj)
 {
     return(EqualityComparerHelper(this, obj, () => {
         if (root != null)
         {
             XMLFormat xml = (XMLFormat)obj;
             return root.Equals(xml.root);
         }
         return false;
     }));
 }