Beispiel #1
0
        public Boolean Equals(IconImage other)
        {
            if (other == null)
            {
                return(false);
            }

            return(Size.Equals(other.Size) &&
                   BitCount.Equals(other.BitCount) &&
                   ColorCount.Equals(other.ColorCount));
        }