Format a Number as Currency
Formatting numbers as currency can be achieved in a single line using ToString.
double amount = 1234.56;
Console.WriteLine(amount.ToString("C"));
Explanation: Using the "C" format specifier, this snippet converts the numeric value into a currency format based on the current culture settings.