ConversionOperationEnum Enumeration

Enumeration of the available range of operations available while converting.

Definition

Namespace: ConversionCalc
Assembly: ConversionCalc (in ConversionCalc.dll) Version: 25.1109.1402+460980fe794ed921231d4cff278ac7c37ae486a2
C#
public enum ConversionOperationEnum

Members

None0 No operation defined or unknown.
Add1 Add the value.
Convert2 Perform a conversion on the value.
Divide3 Divide by the value.
Multiply4 Multiply by the value.
Subtract5 Subtract the value.
Reciprocal6 Get the reciprocal of the value (1/value).
Square7 Get the square of the value (POW(value, 2)).
SquareRoot8 Get the square root of the value (SQRT(value)).

See Also