fork download
  1. using static System.Console;
  2. using System.Globalization;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. var valor = "9.5789";
  7. WriteLine($"Custo: R${valor:C2}");
  8. WriteLine($"Custo: R${valor:C2}".ToString(new CultureInfo("pt-BR")));
  9. WriteLine(string.Format("Custo: R${0:C2}", valor, new CultureInfo("pt-BR")));
  10. }
  11. }
  12.  
  13. //https://pt.stackoverflow.com/q/420881/101
Success #stdin #stdout 0.01s 15884KB
stdin
Standard input is empty
stdout
Custo: R$9.5789
Custo: R$9.5789
Custo: R$9.5789