Skip to content

Instantly share code, notes, and snippets.

@SamWM
Created May 14, 2012 12:03
Show Gist options
  • Save SamWM/2693586 to your computer and use it in GitHub Desktop.
Save SamWM/2693586 to your computer and use it in GitHub Desktop.
Format Currency - no decimals
System.Globalization.NumberFormatInfo nfi = new CultureInfo(System.Threading.Thread.CurrentThread.CurrentCulture.LCID).NumberFormat;
nfi.CurrencyDecimalDigits = 0;
var formatted = string.Format(nfi, "{0:C}", 120);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment