| UInt128Inequality Operator |
Tests two instances of
UInt128 for inequality
Namespace:
Ookii.Jumbo.Jet.Samples.IO
Assembly:
Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 2.0.0
Syntax public static bool operator !=(
UInt128 left,
UInt128 right
)
Public Shared Operator <> (
left As UInt128,
right As UInt128
) As Boolean
public:
static bool operator !=(
UInt128 left,
UInt128 right
)
static let inline (<>)
left : UInt128 *
right : UInt128 : bool
Parameters
- left
- Type: Ookii.Jumbo.Jet.Samples.IOUInt128
The first UInt128. - right
- Type: Ookii.Jumbo.Jet.Samples.IOUInt128
The second UInt128.
Return Value
Type:
Boolean if the two instances are not equal; otherwise,
.
See Also