TimeInterval<T>. Opérateur d’inégalité
Indique si les premier et deuxième arguments ne sont pas égaux.
Espace de noms :System.Reactive
Assemblée: System.Reactive (en System.Reactive.dll)
Syntaxe
'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.
Paramètres
- first
Type : System.Reactive.TimeInterval<T>
Le premier argument.
- second
Type : System.Reactive.TimeInterval<T>
Le deuxième argument.
Valeur de retour
Type : System.Boolean
true si les deux arguments ne sont pas égaux ; sinon, false.