MessagePackObjectInequality Operator |
Compare two instances are not equal.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static bool operator !=(
MessagePackObject left,
MessagePackObject right
)
Public Shared Operator <> (
left As MessagePackObject,
right As MessagePackObject
) As Boolean
public:
static bool operator !=(
MessagePackObject left,
MessagePackObject right
)
static let inline (<>)
left : MessagePackObject *
right : MessagePackObject : bool
Parameters
- left
- Type: MsgPackMessagePackObject
MessagePackObject instance. - right
- Type: MsgPackMessagePackObject
MessagePackObject instance.
Return Value
Type:
Boolean
Whether value of
left and
right are not equal each other or are equal.
See Also