private bool Equals(ColorHSL other)
 {
     return (this._h == other._h && this._s == other._s && this._l == other._l);
 }
Exemple #2
0
 private bool Equals(ColorHSL other)
 {
     return(this._h == other._h && this._s == other._s && this._l == other._l);
 }