Having used the exponent operator ^
in the initialisation of a VB class's public constant following this question.
Public Const MaxValue As Double = MaxMantissa * (2 ^ MaxExponent)
I am converting the class to C#. however I find that C# does not have the same operator (^
is still an operator but only as bitwise xor).
Math.Pow()
is given as an alternative to the operator, but cannot be used in a constant expression. How then can one initialise a constant with an exponent expression in C#?
(I do not use a value instead of an expression because the values within the expression, also constant, come from different places. MaxExponent
comes from the base class, MaxMantissa
is different in each derived class. Furthermore there are multiple constants like this in each derived class such as MaxPositiveValue
, MinPositiveValue
, MinNegativeValue
, MaxNegativeValue
, etc.)