20

In the Visual Studio 2010 watch window, I found the value of a variable became -1.#IND000. What does this mean?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
shapeare
  • 4,133
  • 7
  • 28
  • 39

2 Answers2

21

IND is the representation of NaN (Not a Number) in Windows system. IND = "indeterminate form", mostly a result from an illegal operation like dividing by zero or arithmetic operation with infinity.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Chun-Fu Chao
  • 466
  • 2
  • 10
3

It means the content is undefined, can result from a division by 0.

grifos
  • 3,321
  • 1
  • 16
  • 14