Notification<T>. Opérateur d’égalité
Indique si les arguments gauche et droit sont égaux.
Namespace:System.Reactive
Assemblée: System.Reactive (en System.Reactive.dll)
Syntaxe
'Declaration
Public Shared Operator = ( _
left As Notification(Of T), _
right As Notification(Of T) _
) As Boolean
'Usage
Dim left As Notification(Of T)
Dim right As Notification(Of T)
Dim returnValue As Boolean
returnValue = (left = right)
public static bool operator ==(
Notification<T> left,
Notification<T> right
)
public:
static bool operator ==(
Notification<T>^ left,
Notification<T>^ right
)
static let inline (=)
left:Notification<'T> *
right:Notification<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Paramètres
- gauche
Type : System.Reactive.Notification<T>
Argument de gauche.
- droite
Type : System.Reactive.Notification<T>
Argument de droite.
Valeur de retour
Type : System.Boolean
true si les deux arguments sont égaux ; sinon, false.