Reflection
Inequality Operator (Hotspot)


The first object to compare.
The second object to compare.
Determines whether the specified object is not equal to the current object.
Syntax
'Declaration
 
Public Operator <>( _
   ByVal hs1 As Hotspot, _
   ByVal hs2 As Hotspot _
) As Boolean
'Usage
 
public bool operator !=( 
   Hotspot hs1,
   Hotspot hs2
)

Parameters

hs1
The first object to compare.
hs2
The second object to compare.

Return Value

true if the specified objects are not equal to each other; otherwise, false.
See Also