Click here to Skip to main content
15,883,773 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,

I have a double, and I want to change it to a string, like this:

C#
double value;
string myString = value.toString();


When value is a number with less than 4 digits after the point, it works fine.
For example,
if value is 0, myString will be 0.
if value is 0.01, myString will be 0.01.

But in cases when value has 4 or more digits after the point, myString is created with a floating point (for example, 1E-05).

I want myString to be created in a format of 0.0000000X for any number of digits after the point, and never use the 1E-0X method.
I also want to keep myString as short as possible, for exmaple when the value is 0, i want myString to be 0 (and not 0.000000).

How can I do it?
Thanks
Posted
Comments
Sergey Alexandrovich Kryukov 12-Dec-12 2:12am    
What are you talking about? "value.toString()" cannot even compile...
--SA
user_code 12-Dec-12 2:22am    
Of course it can, and it compiles..

C#
double value;
decimal d= Convert.ToDecimal(value);
string myString = d.toString();
 
Share this answer
 
Go through the following MSDN link. All the required formats are explained.
http://msdn.microsoft.com/en-us/library/dwhawy9k(VS.100).aspx[^]
 
Share this answer
 
C#
double d = 8.7888888888888888;
            float f = float.Parse(d.ToString());
            string str = f.ToString();

            richTextBox1.Text = str.Split('.')[0].ToString();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900