C# BigInteger Multiply

Description

BigInteger Multiply Returns the product of two BigInteger values.

Syntax

BigInteger.Multiply has the following syntax.


public static BigInteger Multiply(
  BigInteger left,
  BigInteger right
)

Parameters

BigInteger.Multiply has the following parameters.

  • left - The first number to multiply.
  • right - The second number to multiply.

Returns

BigInteger.Multiply method returns The product of the left and right parameters.

Example


using System;// www  . j  av a  2 s  .c o  m
using System.Numerics;

public class Class1
{
   public static void Main()
   {
      BigInteger number = BigInteger.Multiply(Int64.MaxValue, 3);
   }
}




















Home »
  C# Tutorial »
    System.Numerics »




BigInteger
Complex