13,450 to text can c# do it ? like excel

You are trying to convert a number to a string, right?
C#:
double d = 13450;
string s = d.ToString(); //ToString() method will convert it to a string for you
 
If you have a number and what it formatted, use ToString like the other thread mentions. If you want money, you can use ToString("c") (I didn't mention it over there).

If you have a string and you want the actual number, ask :)

-Nerseus
 
Back
Top