/// <summary> /// Indicates whether this <see cref="ColorRGB64"/> and a specified <see cref="ColorRGB64"/> instance represent the same color value. /// </summary> /// <param name="other">A <see cref="ColorRGB64"/> instance to compare to the current instance.</param> /// <returns>true if both instances represent the same color value; otherwise false.</returns> public bool Equals(ColorRGB64 other) { return(this == other); }
/// <summary> /// Indicates whether this <see cref="ColorRGB64"/> and a specified <see cref="ColorRGB64"/> instance represent the same color value. /// </summary> /// <param name="other">A <see cref="ColorRGB64"/> instance to compare to the current instance.</param> /// <returns>true if both instances represent the same color value; otherwise false.</returns> public bool Equals(ColorRGB64 other) { return this == other; }