Returns true if x and y are not equal.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static bool operator !=(
	Complex x,
	Complex y
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	x As Complex, _
	y As Complex _
) As Boolean
Visual C++
public:
static bool operator !=(
	Complex x, 
	Complex y
)

Parameters

x
Type: Imsl.Math..::.Complex
A Complex value.
y
Type: Imsl.Math..::.Complex
A Complex value.

Return Value

true if xx and y are equal.

See Also