Skip to content

Instantly share code, notes, and snippets.

@ritacse
Last active January 22, 2023 11:25
Show Gist options
  • Select an option

  • Save ritacse/72c30af1392ec53b5b854bbd2cff5052 to your computer and use it in GitHub Desktop.

Select an option

Save ritacse/72c30af1392ec53b5b854bbd2cff5052 to your computer and use it in GitHub Desktop.
Convert.ToDouble("1234567.12345").ToString("N")
//If you want to control the decimal places you can do something like:
Convert.ToDouble("1234567.12345").ToString("N3") // 3decimal point
Convert.ToDouble("1234567.12345").ToString("N0") // int
or
(Int32.Parse("78956258")).ToString("N0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment