Esempio n. 1
0
 public bool Equals(LMSColor other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     return(L.Equals(other.L) && M.Equals(other.M) && S.Equals(other.S));
 }
Esempio n. 2
0
 public bool Equals(LMSColor other)
 {
     if (other == null) throw new ArgumentNullException("other");
     return L.Equals(other.L) && M.Equals(other.M) && S.Equals(other.S);
 }
Esempio n. 3
0
 public bool Equals(LMSColor other) =>
 L == other.L &&
 M == other.M &&
 S == other.S;