Color.Inequality(Color, Color) Operator

Definition

Tests whether two Color structures are not identical.

public:
 static bool operator !=(System::Windows::Media::Color color1, System::Windows::Media::Color color2);
public static bool operator != (System.Windows.Media.Color color1, System.Windows.Media.Color color2);
static member op_Inequality : System.Windows.Media.Color * System.Windows.Media.Color -> bool
Public Shared Operator != (color1 As Color, color2 As Color) As Boolean

Parameters

color1
Color

The first Color structure to compare.

color2
Color

The second Color structure to compare.

Returns

true if color1 and color2 are not equal; otherwise, false.

Remarks

Floating-point values can acquire a small degree of error when they are operated upon. The Equals method, the Equality operator, and the Inequality operator do not compensate for this and thus may not return the expected Boolean result.

The AreClose method uses a fuzzy equality algorithm that compensates for this floating-point arithmetic error by returning true for a comparison of two Color structures that are practically identical, but whose values may differ by a minuscule amount.

The equivalent method for this operator is Color.Equals(Color, Color)

Applies to

See also