指出第一個和第二個引數是否不相等。
Namespace:System.Reactive
裝配: System.Reactive.dll) 中的 System.Reactive (
語法
'Declaration
Public Shared Operator <> ( _
first As Timestamped(Of T), _
second As Timestamped(Of T) _
) As Boolean
'Usage
Dim first As Timestamped(Of T)
Dim second As Timestamped(Of T)
Dim returnValue As Boolean
returnValue = (first <> second)
public static bool operator !=(
Timestamped<T> first,
Timestamped<T> second
)
public:
static bool operator !=(
Timestamped<T> first,
Timestamped<T> second
)
static let inline (<>)
first:Timestamped<'T> *
second:Timestamped<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
參數
- first
類型:System.Reactive.Timestamped<T>
第一個引數。
- second
類型:System.Reactive.Timestamped<T>
第二個引數。
傳回值
類型: System.Boolean
如果兩個引數不相等,則為 true;否則為 false。