The inequality operator (!=) returns false if its operands are equal, true otherwise. Inequality operators are predefined for all types, including string and object. User-defined types can overload the != operator.
Syntax
'Declaration
Public Operator <>( _
ByVal As Length, _
ByVal As Length _
) As System.Boolean
public System.bool operator !=(
Length ,
Length
)
Parameters
- unit1
- unit2
See Also