C# BigInteger Inequality(Int64, BigInteger)
Description
BigInteger Inequality(Int64, BigInteger)
Returns
a value that indicates whether a 64-bit signed integer and a BigInteger value
are not equal.
Syntax
BigInteger.Inequality(Int64, BigInteger)
has the following syntax.
public static bool operator !=(
long left,
BigInteger right
)
Parameters
BigInteger.Inequality(Int64, BigInteger)
has the following parameters.
left
- The first value to compare.right
- The second value to compare.
Returns
BigInteger.Inequality(Int64, BigInteger)
method returns true if left and right are not equal; otherwise, false.
Example
// w w w. ja v a 2 s. co m
using System;
using System.IO;
using System.Numerics;
public class Example
{
public static void Main()
{
BigInteger bigNumber = BigInteger.Pow(2, 63);
long number = Int64.MaxValue;
Console.WriteLine(number != bigNumber);
}
}
The code above generates the following result.