2 years ago
#60394

SilverLight
C# - Double to String retuns unknown value
Here is my c# codes :
double amount_dbl = double.Parse("0.00001167");
string amount_str = amount_dbl.ToString();
amount_str is 1.167E-05
How can i get 0.00001167
after ToString()?
c#
double
0 Answers
Your Answer