첫 번째 인수와 두 번째 인수가 같지 않은지 여부를 나타냅니다.
네임스페이스:System.Reactive
어셈블리: System.Reactive(System.Reactive.dll)
구문
'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.
매개 변수
- first
형식: System.Reactive.Unit
비교할 첫 번째 단위 또는 null입니다.
- second
형식: System.Reactive.Unit
비교할 두 번째 단위 또는 null입니다.
반환 값
형식: System.Boolean
항상 false를 반환합니다.