Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates whether first and second arguments are not equal.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
first As Timestamped(Of T), _
second As Timestamped(Of T) _
) As Boolean
'Usage
Dim first As Timestamped(Of T)
Dim second As Timestamped(Of T)
Dim returnValue As Boolean
returnValue = (first <> second)
public static bool operator !=(
Timestamped<T> first,
Timestamped<T> second
)
public:
static bool operator !=(
Timestamped<T> first,
Timestamped<T> second
)
static let inline (<>)
first:Timestamped<'T> *
second:Timestamped<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- first
Type: System.Reactive.Timestamped<T>
The first argument.
- second
Type: System.Reactive.Timestamped<T>
The second argument.
Return Value
Type: System.Boolean
true if both arguments are not equal; otherwise, false.