通知<T>.等しくない演算子

左引数と右引数が等しくないかどうかを示します。

Namespace: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.

パラメーター

戻り値

型: System.Boolean
両方の引数が等しくない場合は true。それ以外の場合は false。

参照

リファレンス

Notification<T> クラス

System.Reactive 名前空間