public int CompareTo(object obj) { SyncResponse syncResponse = (SyncResponse)obj; if (syncResponse == null) { throw new InvalidOperationException("Comparing different types of records."); } int num = this.Path.CompareTo(syncResponse.Path); if (num != 0) { return(num); } return(num); }
public int CompareTo(object obj) { SyncResponse peer = (SyncResponse)obj; if (peer == null) { throw new InvalidOperationException("Comparing different types of records."); } int ret = 0; ret = Path.CompareTo(peer.Path); if (ret != 0) { return(ret); } return(ret); }
public override bool Equals(object obj) { SyncResponse syncResponse = (SyncResponse)obj; if (syncResponse == null) { return(false); } if (object.ReferenceEquals((object)syncResponse, (object)this)) { return(true); } bool flag = this.Path.Equals(syncResponse.Path); if (!flag) { return(flag); } return(flag); }
public override bool Equals(object obj) { SyncResponse peer = (SyncResponse)obj; if (peer == null) { return(false); } if (Object.ReferenceEquals(peer, this)) { return(true); } bool ret = false; ret = Path.Equals(peer.Path); if (!ret) { return(ret); } return(ret); }
public override bool Equals(object obj) { SyncResponse objA = (SyncResponse)obj; if (objA == null) { return(false); } if (object.ReferenceEquals(objA, this)) { return(true); } bool flag = false; flag = this.Path.Equals(objA.Path); if (!flag) { return(flag); } return(flag); }