Unit.Equality, opérateur
Indique si les premier et deuxième arguments sont égaux.
Namespace:System.Reactive
Assemblée: System.Reactive (en System.Reactive.dll)
Syntaxe
'Declaration
Public Shared Operator = ( _
first As Unit, _
second As Unit _
) As Boolean
'Usage
Dim first As Unit
Dim second As Unit
Dim returnValue As Boolean
returnValue = (first = second)
public static bool operator ==(
Unit first,
Unit second
)
public:
static bool operator ==(
Unit first,
Unit second
)
static let inline (=)
first:Unit *
second:Unit : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Paramètres
- first
Type : System.Reactive.Unit
Première unité à comparer, ou null.
- second
Type : System.Reactive.Unit
Deuxième unité à comparer, ou null.
Valeur de retour
Type : System.Boolean
Retourne toujours true.