Exemplo n.º 1
0
 public override bool Equals(object o)
 {
     if (o == null || o.GetType() != GetType())
     {
         return(false);
     }
     else if (o == this)
     {
         return(true);
     }
     else
     {
         ObjectInspector other = ((OrcListObjectInspector)o).child;
         return(other.Equals(child));
     }
 }