I have read many examples of rounding numbers but nothing that solves my problem...
I may be missing something obvious but I tried:
string.Format("{0:0.0}", 1.998) = "2.0"
(1.998).ToString("0.0") = "2.0"
(1.998).ToString("0.#") = "2"
Math.Round(1.998, 1) = 2
I need: 1.9
Note: value 1.998 could be 1.998xxx
Seemed pretty simple but can't get this result...