'Usage
Parameters
- left
- The left operand of the multiply operation.
- right
- The right operand of the multiply operation.
Return Value
A TdNumber structure is returned whose value property contains the product of
the left and right operands.
'Usage
Exception | Description |
---|---|
System.OverflowException | The result is not in the range (between TdNumber.MinValue and TdNumber.MaxValue) of a TdNumber, or the exponent is less than -130. |
The result will be TdNumber.Null if one of the parameter is TdNumber.Null.
TdNumber right01 = TdNumber.Parse("1e-39"); TdNumber result01 = TdNumber.MaxValue * right01; Console.WriteLine("{0} * {1} = {2}", TdNumber.MaxValue, right01, result01); // result = 9.999999999999999999999999999999999999999e86 TdNumber left02 = TdNumber.Parse("7922816253271108167.1548469249"); TdNumber right02 = TdNumber.Parse("50"); TdNumber result02 = left02 * right02; Console.WriteLine("{0} * {1} = {2}", left02, right02, result02); // result = 3.96140812663555408357742346245e20
Target Platforms: Windows 8.1, Windows 10, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019