Esempio n. 1
0
        public override bool Equals(object obj)
        {
            TxSetEntry other = obj as TxSetEntry;

            if (other == null)
            {
                return(false);
            }

            return(this.TableId == other.TableId &&
                   this.RecordKey.Equals(other.RecordKey));
        }
Esempio n. 2
0
 private bool Call(TxSetEntry entry)
 {
     return(entry.TableId == this.tableId &&
            entry.RecordKey.Equals(this.recordKey));
 }