Beispiel #1
0
 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;
 }
Beispiel #2
0
        public override bool Equals(object obj)
        {
            bool equal = obj is SignalKey;

            if (equal)
            {
                SignalKey other = (SignalKey)obj;
                equal = other.key == this.key;
            }

            return(equal);
        }
Beispiel #3
0
 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;
 }