왼쪽 및 오른쪽 인수가 같은지 여부를 나타냅니다.
네임스페이스:System.Reactive
어셈블리: System.Reactive(System.Reactive.dll)
구문
'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.
매개 변수
- left
형식: System.Reactive.Notification<T>
왼쪽 인수입니다.
- 오른쪽
형식: System.Reactive.Notification<T>
올바른 인수입니다.
반환 값
형식: System.Boolean
두 인수가 모두 같으면 true이고, 그렇지 않으면 false입니다.