Hello ,
public double num;
num = 9999987991231239f;
Debug.Log(num.ToString()); //Doesn't print the number
text.text = num.ToString(); //Doesn't print the number
I have tried num.ToString("0");
but nothing is helping.
I want to perform some calculations on that number (displayed on label ).
I want float/double to be printed without exponential notation. Plz Help