operator*()

System::operator*(const T&, const Decimal&) function

Returns a new instance of Decimal class that represents a value that is a result of multiplication of the specified value and the value represented by the specified Decimal object.

template<typename T,typename _> Decimal System::operator*(const T &x, const Decimal &d)

Arguments

ParameterTypeDescription
xconst T&The first multiplier
dconst Decimal&The Decimal object representing the second multiplier

Return Value

A new instance of Decimal class that represents a value that is a result of multiplication of x and the value represented by d.

See Also