Is it possible to express (mathematical) infinity, positive or negative, in C#? If so, how?

link|improve this question

65% accept rate
feedback

4 Answers

up vote 15 down vote accepted

double.PositiveInfinity

double.NegativeInfinity

float zero = 0;

float positive = 1 / zero;
Console.WriteLine(positive);    // Outputs "Infinity"

float negative = -1 / zero;
Console.WriteLine(negative);    // Outputs "-Infinity"
link|improve this answer
why didn't you just do float positive = 1/0;? why the extra step – hhafez Aug 30 '09 at 1:04
4  
Becuase the compiler will detect the divide by zero and stop compilation. – Jaimal Chohan Aug 30 '09 at 1:12
6  
@Jaimal: That's because the compiler treats 1/0 as integer division. Using 1/0f or 1/0.0 would work. – LukeH Aug 30 '09 at 1:38
@Luke: Ahh of course. – Jaimal Chohan Aug 30 '09 at 1:39
feedback

Use the PositiveInfinity and NegativeInfinity constants:

double positive = double.PositiveInfinity;
double negative = double.NegativeInfinity;
link|improve this answer
feedback
public const double NegativeInfinity = -1.0 / 0.0;
public const double PositiveInfinity = 1.0 / 0.0;
link|improve this answer
feedback

Yes, check constants values of types float and double, like:
float.PositiveInfinity
float.NegativeInfinity
Those values are compliant with IEEE-754, so you might want to check out how this works exactly, so you will be aware, when and how you can get those values while making calculations. More info here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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