Do we have predefined Power Operator in C#?
When I try with ^ Operator, It is taking exclusive-or operation.
Is there any way to include the Pow Operator other than Math Library?
Do we have predefined Power Operator in C#?
When I try with ^ Operator, It is taking exclusive-or operation.
Is there any way to include the Pow Operator other than Math Library?
There is no built in power operator similar to that found in Fortran, Python etc.
Math.Pow
.