I\'d like to dispaly only one decimal place. I\'ve tried the following:
string thevalue = \"6.33\"; thevalue = string.Format(\"{0:0.#}\", thevalue);
Here is another way to format floating point numbers as you need it:
string.Format("{0:F1}",6.33);