TimeInterval<T>. Operador de desigualdade
Indica se o primeiro e o segundo argumentos não são iguais.
Namespace:System.Reactive
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'Declaration
Public Shared Operator <> ( _
first As TimeInterval(Of T), _
second As TimeInterval(Of T) _
) As Boolean
'Usage
Dim first As TimeInterval(Of T)
Dim second As TimeInterval(Of T)
Dim returnValue As Boolean
returnValue = (first <> second)
public static bool operator !=(
TimeInterval<T> first,
TimeInterval<T> second
)
public:
static bool operator !=(
TimeInterval<T> first,
TimeInterval<T> second
)
static let inline (<>)
first:TimeInterval<'T> *
second:TimeInterval<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parâmetros
- first
Tipo: System.Reactive.TimeInterval<T>
O primeiro argumento.
- second
Tipo: System.Reactive.TimeInterval<T>
O segundo argumento.
Valor Retornado
Tipo: System.Boolean
true se ambos os argumentos não forem iguais; caso contrário, false.