C# BigInteger GreaterThanOrEqual(BigInteger, Int64)
Description
BigInteger GreaterThanOrEqual(BigInteger, Int64)
Returns
a value that indicates whether a BigInteger value is greater than or equal
to a 64-bit signed integer value.
Syntax
BigInteger.GreaterThanOrEqual(BigInteger, Int64)
has the following syntax.
public static bool operator >=(
BigInteger left,
long right
)
Parameters
BigInteger.GreaterThanOrEqual(BigInteger, Int64)
has the following parameters.
left
- The first value to compare.right
- The second value to compare.
Returns
BigInteger.GreaterThanOrEqual(BigInteger, Int64)
method returns true if left is greater than right; otherwise, false.
Example
/*ww w. j av a 2s . c o m*/
using System;
using System.IO;
using System.Numerics;
public class Example
{
public static void Main()
{
BigInteger bigNumber = BigInteger.Pow(Int32.MaxValue, 4);
long number = Int64.MaxValue;
Console.WriteLine(bigNumber >= number);
}
}
The code above generates the following result.