BigInteger.Inequality Operator
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Returns a value that indicates whether two values are not equal.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Inequality(Double, BigInteger) | Returns a value that indicates whether a double is not equal to a big integer. | |
Inequality(Int32, BigInteger) | Returns a value that indicates whether an integer is not equal to a big integer. | |
Inequality(Int64, BigInteger) | Returns a value that indicates whether a long is not equal to a big integer. | |
Inequality(UInt32, BigInteger) | Returns a value that indicates whether an unsigned integer is not equal to a big integer. | |
Inequality(UInt64, BigInteger) | Returns a value that indicates whether an unsigned long is not equal to a big integer. | |
Inequality(BigInteger, BigInteger) | Returns a value that indicates whether two big integers are not equal. | |
Inequality(BigInteger, Double) | Returns a value that indicates whether a big integer is not equal to a double. | |
Inequality(BigInteger, Int32) | Returns a value that indicates whether a big integer is not equal to an integer. | |
Inequality(BigInteger, Int64) | Returns a value that indicates whether a big integer is not equal to a long. | |
Inequality(BigInteger, UInt32) | Returns a value that indicates whether a big integer is not equal to an unsigned integer. | |
Inequality(BigInteger, UInt64) | Returns a value that indicates whether a big integer is not equal to an unsigned long. |
Top