Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            CalibrationCoefficient other = obj as CalibrationCoefficient;

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

            return(A == other.A &&
                   B == other.B &&
                   C == other.C);
        }
Ejemplo n.º 2
0
 public abstract void Set(CalibrationCoefficient coeff);