Silly question, I want to format an integer so that it appears with the 1000\'s separator (,), but also without decimal places and without a leading 0.
My attempts s
Try
String.Format("{0:#,#}", 4000);