Big Integer.Multiply Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Multiply( | Returns the product of two BigInteger numbers. |
Multiply( | Returns the product of a BigInteger number and an integer. |
Multiply( | Returns the product of a BigInteger number and an unsigned integer. |
Multiply( | Returns the product of an integer and a BigInteger number. |
Multiply( | Returns the product of an unsigned integer and a BigInteger number. |
Multiply(BigInteger, BigInteger) Operator
Returns the product of two BigInteger numbers.
public static BigInteger operator *(
BigInteger left,
BigInteger right
)
Parameters
- left BigInteger
- A BigInteger number.
- right BigInteger
- A BigInteger number.
Return Value
BigIntegerThe product of left and right.
Implements
IMultiplyOperators<TSelf, TOther, TResult>.Multiply(TSelf, TOther)Multiply(BigInteger, Int32) Operator
Returns the product of a BigInteger number and an integer.
public static BigInteger operator *(
BigInteger left,
int right
)
Parameters
- left BigInteger
- A BigInteger number.
- right Int32
- An integer.
Return Value
BigIntegerThe product of left and right.
Multiply(BigInteger, UInt32) Operator
Returns the product of a BigInteger number and an unsigned integer.
public static BigInteger operator *(
BigInteger left,
uint right
)
Parameters
- left BigInteger
- A BigInteger number.
- right UInt32
- An unsigned integer.
Return Value
BigIntegerThe product of left and right.
Multiply(Int32, BigInteger) Operator
Returns the product of an integer and a BigInteger number.
public static BigInteger operator *(
int left,
BigInteger right
)
Parameters
- left Int32
- An integer.
- right BigInteger
- A BigInteger number.
Return Value
BigIntegerThe product of left and right.
Multiply(UInt32, BigInteger) Operator
Returns the product of an unsigned integer and a BigInteger number.
public static BigInteger operator *(
uint left,
BigInteger right
)
Parameters
- left UInt32
- An unsigned integer.
- right BigInteger
- A BigInteger number.
Return Value
BigIntegerThe product of left and right.