Esempio n. 1
0
        public override bool IsEqualTo(IPipeDataflow other)
        {
            if (this.GetType() != other.GetType())
            {
                return(false);
            }
            if (this.Period != ((PipeMovingAverage <T>)other).Period)
            {
                return(false);
            }

            return(true);
        }
Esempio n. 2
0
 public override bool IsEqualTo(IPipeDataflow other)
 {
     return(this.GetType() == other.GetType());
 }
Esempio n. 3
0
 public abstract bool IsEqualTo(IPipeDataflow other);