BigInteger.Inequality Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Inequality(BigInteger, BigInteger) Returns whether a BigInteger is not equal to another and returns the result.
Inequality(BigInteger, Int32) Returns whether a BigInteger is not equal to an integer.
Inequality(Int32, BigInteger) Returns whether a BigInteger is not equal to an integer.

Inequality(BigInteger, BigInteger) Operator

Returns whether a BigInteger is not equal to another and returns the result.
C#
public static bool operator !=(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
The first number to compare.
right  BigInteger
The second number to compare.

Return Value

Boolean
true if left is not equal to right; otherwise false.

Inequality(BigInteger, Int32) Operator

Returns whether a BigInteger is not equal to an integer.
C#
public static bool operator !=(
	BigInteger left,
	int right
)

Parameters

left  BigInteger
The first number to compare.
right  Int32
The second number to compare.

Return Value

Boolean
true if left is not equal to right; otherwise false.

Inequality(Int32, BigInteger) Operator

Returns whether a BigInteger is not equal to an integer.
C#
public static bool operator !=(
	int left,
	BigInteger right
)

Parameters

left  Int32
The first number to compare.
right  BigInteger
The second number to compare.

Return Value

Boolean
true if left is not equal to right; otherwise false.

See Also