バージョン

等しくないか判定する演算子 オペレータ

非等価演算子
シンタックス
'宣言
 
Public Operator <>( _
   ByVal x As DefaultableInteger, _
   ByVal y As DefaultableInteger _
) As Boolean
public bool operator !=( 
   DefaultableInteger x,
   DefaultableInteger y
)

パラメータ

x
演算で左辺の引数。
y
演算で右辺の引数。

戻り値の型

両方のパラメーターの整数値が等しくない場合は True。
参照