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