I\'d like to dispaly only one decimal place. I\'ve tried the following:
string thevalue = \"6.33\"; thevalue = string.Format(\"{0:0.#}\", thevalue);
Please this:
String.Format("{0:0.0}", 123.4567); // return 123.5