Big Integer.Multiply Operator
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Multiply( | Returns the product of two BigInteger numbers. |
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.
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.