show/hide this revision's text 2 added 260 characters in body

This question is similiar to the one you're asking:

http://stackoverflow.com/questions/158172/formatting-numbers-with-significant-figures-in-c#158942

Thus you could do the following:

double Input2 = 234.004223;
string Result2 = Math.Floor(Input2) + Convert.ToDouble(String.Format("{0:G1}", Input2 - Math.Floor(Input2))).ToString("R6");

Rounded to 1 significant digit.

show/hide this revision's text 1