Ejemplo n.º 1
0
 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));
 }
Ejemplo n.º 2
0
 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);
 }