Last active
September 10, 2019 21:38
-
-
Save ezirmusitua/605b5dab4185095ab3bf2936f6b6b177 to your computer and use it in GitHub Desktop.
[Format integer to money] Format integer to money string #C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string IntToMoney(int value) { | |
return $"$ {value:###,###}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment