I\'d like to dispaly only one decimal place. I\'ve tried the following:
string thevalue = \"6.33\"; thevalue = string.Format(\"{0:0.#}\", thevalue);
ToString() simplifies the job. double.Parse(theValue).ToString("N1")
double.Parse(theValue).ToString("N1")