I don\'t want to do any rounding, straight up, \"39%\".
\"39%\"
So \"9.99%\" should become \"9%\".
\"9.99%\"
\"9%\"
One way to do it:
"39.999%".Split(new char[] { '.' })[0] + "%";