BigInteger.Inequality(Int32, BigInteger) Operator

Returns whether a BigInteger is not equal to an integer.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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