Reply to thread

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]


Back
Top