I have a requirement to format large numbers like 4,316,000 as \"4.3m\".
How can I do this in C#?
divide the number by 1000000.0, then append an "m".
remember to round the number to 1 decimal place.