fork download
  1. using static System.Console;
  2. using System.Globalization;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. if (decimal.TryParse("0,05", NumberStyles.Number, new CultureInfo("pt-BR"), out var valor)) WriteLine(valor);
  7. }
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/106672/101
Success #stdin #stdout 0.03s 16304KB
stdin
Standard input is empty
stdout
0.05