using System; public class Test { private static bool Flag = false; static void Main(string[] args) { var foo = 34; var bar = 42; Console.WriteLine($"Foo formatted as a currency to 4 decimal places is: {foo:c4}"); } }