Complex.Inequality Operator
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns a value that indicates whether two complex numbers are not equal.
Namespace: System.Numerics
Assembly: System.Numerics (in System.Numerics.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
left As Complex, _
right As Complex _
) As Boolean
public static bool operator !=(
Complex left,
Complex right
)
Parameters
- left
Type: System.Numerics.Complex
The first value to compare.
- right
Type: System.Numerics.Complex
The second value to compare.
Return Value
Type: System.Boolean
true if left and right are not equal; otherwise, false.
Remarks
The Equality method defines the operation of the inequality operator for complex numbers. It enables code such as the following:
Dim c1 As New Complex(12.6, 4.3)
Dim c2 As New Complex(11.1, 8.9)
If c1 <> c2 Then
Complex c1 = new Complex(12.6, 4.3);
Complex c2 = new Complex(11.1, 8.9);
if (c1 != c2)
Languages that do not support custom operators can test for inequality by calling the Equals(Complex) method and reversing its value.
Note that, because of differences in precision, two complex numbers that are apparently equivalent can be considered unequal. One possible workaround is to implement a comparison method that returns true only if the difference between the two real and imaginary parts of the complex numbers exceeds a certain threshold (such as .01% of the value of the real or imaginary component of one of the complex numbers). For more information, see the Equals(Complex) method.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.