Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
You are trying to convert a number to a string, right?[code=csharp]double d = 13450;string s = d.ToString(); //ToString() method will convert it to a string for you[/code]
You are trying to convert a number to a string, right?
[code=csharp]
double d = 13450;
string s = d.ToString(); //ToString() method will convert it to a string for you
[/code]