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

Target Platforms: Windows 8.1, Windows 10, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019

See Also

Reference

TdNumber Structure
TdNumber Members