NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Decimal Division Operator

Divides two Decimal values and returns a Decimal result.

[C#]
public static Decimal operator /(
   Decimal d1,
   Decimal d2
);
[C++]
public: static Decimal operator op_Division(
   Decimal d1,
   Decimal d2
);
[JScript]
returnValue = d1 / d2;

[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.

[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.

Arguments [JScript]

d1
The left operand (the dividend), a Decimal.
d2
The right operand (the divisor), a Decimal.

Parameters [C#, C++]

d1
The left operand (the dividend), a Decimal.
d2
The right operand (the divisor), a Decimal.

Return Value [C#, C++, JScript]

The Decimal result of dividing the numbers.

Exceptions

Exception Type Condition
DivideByZeroException is thrown if the divisor is zero.

Remarks [C#, C++, JScript]

The op_Division method divides two Decimal values and returns the result as a Decimal value.

See Also

Decimal Structure | Decimal Members | System Namespace