'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
Product | Versions | Platforms |
---|---|---|
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |