Equals() public method

Compares this instance to the specified to see if they are equivalent. NOTE: If you make a change here, you likely need to change GetHashCode() as well.

public Equals ( object obj ) : bool
obj object
return bool
 public bool ContainsChange(MemberDescriptor desc)
 {
     if (this._member == null)
     {
         return true;
     }
     if (desc == null)
     {
         return false;
     }
     return desc.Equals(this._member);
 }