using System; class MainClass { static void Main() { Console.WriteLine("The value: {0}.", 500); // Print out number. Console.WriteLine("The value: {0:C}.", 500); // Format as currency. } }
The value: 500. The value: $500.00.