C# BigInteger LessThanOrEqual(UInt64, BigInteger)
Description
BigInteger LessThanOrEqual(UInt64, BigInteger)
Returns
a value that indicates whether a 64-bit unsigned integer is less than or equal
to a BigInteger value.
Syntax
BigInteger.LessThanOrEqual(UInt64, BigInteger)
has the following syntax.
public static bool operator <=(
ulong left,
BigInteger right
)
Parameters
BigInteger.LessThanOrEqual(UInt64, BigInteger)
has the following parameters.
left
- The first value to compare.right
- The second value to compare.
Returns
BigInteger.LessThanOrEqual(UInt64, BigInteger)
method returns true if left is less than or equal to right; otherwise, false.
Example
//from ww w .j a v a 2 s . com
using System;
using System.IO;
using System.Numerics;
public class Example
{
public static void Main()
{
BigInteger number = BigInteger.Parse("123123123123");
Console.WriteLine(UInt64.MaxValue <= number);
}
}
The code above generates the following result.