For example, does an operator exist to handle this?

float Result, Number1, Number2;

Number1 = 2;
Number2 = 2;

Result = Number1 (operator) Number2;

In the past the ^ operator has served as an exponential operator in other languages, but in C# it is a bit-wise operator.

Do I have to write a loop or include another namespace to handle exponential operations? If so, how do I handle exponential operations using non-integers?

link|improve this question
It's not in C#, but many languages use ** as the infix exponentiation operator. – Mark Rushakoff Jun 14 '10 at 1:41
feedback

2 Answers

up vote 10 down vote accepted

The C# language doesn't have a power operator. However, the .NET Framework offers the Math.Pow method:

Returns a specified number raised to the specified power.

So your example would look like this:

float Result, Number1, Number2;

Number1 = 2;
Number2 = 2;

Result = Math.Pow(Number1, Number2);
link|improve this answer
Great. Thanks for the clear answer. I appreciate it. – Charlie Jun 14 '10 at 1:44
feedback

There is a blog post on MSDN about why an exponent operator does NOT exists from the C# team.

It would be possible to add a power operator to the language, but performing this operation is a fairly rare thing to do in most programs, and it doesn't seem justified to add an operator when calling Math.Pow() is simple.


You asked:

Do I have to write a loop or include another namespace to handle exponential operations? If so, how do I handle exponential operations using non-integers?

Math.Pow supports double parameters so there is no need for you to write your own.

link|improve this answer
Excellent. Thanks! – Charlie Jun 14 '10 at 1:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.