operator/()

Decimal::operator/(const Decimal&) const method

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

Decimal System::Decimal::operator/(const Decimal &d) const

Arguments

ParameterTypeDescription
dconst Decimal&The Decimal object representing the divisor

Return Value

A new instance of Decimal class that represents a value that is a result of division of the value represented by the current object by the value represented by the specified object.

See Also