지정된 두 개의 기록된 개체가 같은지 확인합니다.
네임스페이스:Microsoft.Reactive.Testing
어셈블리: Microsoft.Reactive.Testing(Microsoft.Reactive.Testing.dll)
구문
'Declaration
Public Shared Operator = ( _
left As Recorded(Of T), _
right As Recorded(Of T) _
) As Boolean
'Usage
Dim left As Recorded(Of T)
Dim right As Recorded(Of T)
Dim returnValue As Boolean
returnValue = (left = right)
public static bool operator ==(
Recorded<T> left,
Recorded<T> right
)
public:
static bool operator ==(
Recorded<T> left,
Recorded<T> right
)
static let inline (=)
left:Recorded<'T> *
right:Recorded<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
매개 변수
- left
형식: Microsoft.Reactive.Testing.Recorded<T>
같음을 위해 검사 첫 번째 개체입니다.
- 오른쪽
형식: Microsoft.Reactive.Testing.Recorded<T>
같은지 검사 두 번째 개체입니다.
반환 값
형식: System.Boolean
두 개체가 같으면 True이고, 그렇지 않으면 false입니다.