c#: how to force trailing zero in numeric format string?
You can use syntax like this:
String.Format("{0:0.00}", n)
On those rare occasions I need to formatting, I go here:
http://blog.stevex.net/index.php/string-formatting-in-csharp/
yourNumber.ToString("N2");