AmountMultiply(Double, Amount) Operator
Multiplies a
Double value with an
Amount.
Namespace: DevCase.Core.Math.ScienceAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Amount operator *(
double first,
Amount second
)
Public Shared Operator * (
first As Double,
second As Amount
) As Amount
Dim first As Double
Dim second As Amount
Dim returnValue As Amount
returnValue = (first * second)
public:
static Amount^ operator *(
double first,
Amount^ second
)
static let inline (*)
first : float *
second : Amount : Amount
No code example is currently available or this language may not be supported.
- first Double
-
The Double value.
- second Amount
-
The Amount value.
Amount
The result of the operator.