T com carimbo de<data/hora>. Operador de igualdade
Indica se o primeiro e o segundo argumentos são iguais.
Namespace:System.Reactive
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'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.
Parâmetros
- first
Tipo: System.Reactive.Timestamped<T>
O primeiro argumento.
- second
Tipo: System.Reactive.Timestamped<T>
O segundo argumento.
Valor Retornado
Tipo: System.Boolean
true se ambos os argumentos forem iguais; caso contrário, false.