Using String.Format how can i ensure all numbers have commas after every 3 digits eg 23000 = \"23,000\" and that 0 returns \"0\".
String.Format(\"{0:n}\", 0); //give
you just put it like this:
Console.WriteLine(**$**"Your current amount of money is: **{yourVar:c}**");