Skip to content

Instantly share code, notes, and snippets.

@chelseamy
Created September 30, 2013 00:06
Show Gist options
  • Save chelseamy/6757713 to your computer and use it in GitHub Desktop.
Save chelseamy/6757713 to your computer and use it in GitHub Desktop.
How to format currency in C#
decimal moneyvalue = 1921.39m;
string html = String.Format("Order Total: {0:C}", moneyvalue);
Console.WriteLine(html);
@Vikas-jk
Copy link

Vikas-jk commented Jan 24, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment