Ejemplo n.º 1
0
        public bool Equals(SolidColorBrush other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }

            return(ReferenceEquals(this, other) || ColorWithOpacity.Equals(other.ColorWithOpacity));
        }
Ejemplo n.º 2
0
 public override int GetHashCode() => ColorWithOpacity.GetHashCode() ^ _isClone.GetHashCode();