protected bool Equals(RGBColorBase other) { if (other == null) { throw new ArgumentNullException("other"); } return(R.Equals(other.R) && G.Equals(other.G) && B.Equals(other.B)); }
protected bool Equals(RGBColorBase other) { if (other == null) throw new ArgumentNullException("other"); return R.Equals(other.R) && G.Equals(other.G) && B.Equals(other.B); }