C# BigInteger LessThan(BigInteger, UInt64)

Description

BigInteger LessThan(BigInteger, UInt64) Returns a value that indicates whether a BigInteger value is less than a 64-bit unsigned integer.

Syntax

BigInteger.LessThan(BigInteger, UInt64) has the following syntax.


public static bool operator <(
  BigInteger left,
  ulong right
)

Parameters

BigInteger.LessThan(BigInteger, UInt64) has the following parameters.

  • left - The first value to compare.
  • right - The second value to compare.

Returns

BigInteger.LessThan(BigInteger, UInt64) method returns true if left is less than right; otherwise, false.

Example


using System;//  w  ww. j  av  a2s . c  om
using System.IO;
using System.Numerics;

public class Example
{
   public static void Main()
   {
        BigInteger number = BigInteger.Parse("12312312312312312");
        Console.WriteLine(number < UInt64.MaxValue);

    
   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Numerics »




BigInteger
Complex