Notificação<T>. Operador de igualdade
Indica se os argumentos esquerdo e direito são iguais.
Namespace:System.Reactive
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'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.
Parâmetros
- esquerda
Tipo: System.Reactive.Notification<T>
O argumento à esquerda.
- direita
Tipo: System.Reactive.Notification<T>
O argumento certo.
Valor Retornado
Tipo: System.Boolean
true se ambos os argumentos forem iguais; caso contrário, false.