.NET Matrix Library
Inequality Operator
See Also  Send comments on this topic


a
The complex number on the left side of the equality operator.
b
The complex number on the right side of the equality operator.
Tests whether two complex structures are not equal.

Syntax

Visual Basic (Declaration) 
Public Operator <>( _
   ByVal a As Complex, _
   ByVal b As Complex _
) As Boolean
C# 
public bool operator !=( 
   Complex a,
   Complex b
)
C++/CLI 
public:
bool operator !=( 
   Complex a,
   Complex b
)

Parameters

a
The complex number on the left side of the equality operator.
b
The complex number on the right side of the equality operator.

Return Value

true if complex numbers are not equal; otherwise false.

Requirements

Platforms: Windows 7, Windows Vista, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows 2000

See Also

.NET Matrix Library Documentation