public SignalKey(SignalKey source) { this.signalParams = source.signalParams; //this.path = source.path; //this.intf = source.intf; this.signal = source.signal; this.key = source.key; this.hash = source.hash; }
public override bool Equals(object obj) { bool equal = obj is SignalKey; if (equal) { SignalKey other = (SignalKey)obj; equal = other.key == this.key; } return(equal); }