I\'m trying to use String.Format(\"{0:c}\", somevalue) in C# but am having a hard time figuring out how to configure the output to meet my needs. Here are my needs:
Try something like this:
String currency = (number == 0) ? String.Empty : number.ToString("c");