Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Last active September 10, 2019 21:38
Show Gist options
  • Save ezirmusitua/605b5dab4185095ab3bf2936f6b6b177 to your computer and use it in GitHub Desktop.
Save ezirmusitua/605b5dab4185095ab3bf2936f6b6b177 to your computer and use it in GitHub Desktop.
[Format integer to money] Format integer to money string #C#
string IntToMoney(int value) {
return $"$ {value:###,###}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment