Color.Inequality(Color, Color) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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)