Send feedback on this topic.
Teradata.Client.Provider
Multiply Method (TdNumber)



Teradata.Client.Provider Namespace > TdNumber Structure : Multiply Method
The left operand of the multiply operation.
The right operand of the multiply operation.
The arithmetic product of two TdNumbers is calculated.
Syntax
'Declaration
 
Public Shared Function Multiply( _
   ByVal left As TdNumber, _
   ByVal right As TdNumber _
) As TdNumber
'Usage
 
Dim left As TdNumber
Dim right As TdNumber
Dim value As TdNumber
 
value = TdNumber.Multiply(left, right)
public static TdNumber Multiply( 
   TdNumber left,
   TdNumber right
)
public:
static TdNumber Multiply( 
   TdNumber left,
   TdNumber right
) 

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.
Exceptions
ExceptionDescription

The result is not in the range (between TdNumber.MinValue and TdNumber.MaxValue) of a TdNumber, or the exponent is less than -130.

Remarks

The result will be TdNumber.Null if one of the parameter is TdNumber.Null.

Example
Please refer to TdNumber.op_Multiply for an example on the use of the multiplication operator.
Requirements
ProductVersionsPlatforms
.NET2.1, 3.1, 6Windows, Linux, MacOS
.NET Framework4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdNumber Structure
TdNumber Members