var withComma = Convert.ToSingle("3,2");
Console.WriteLine($"Converted float from string with comma (3,2): {withComma}");
It returns to the console:
Converted float from string with comma (3,2): 32
But should return:
Converted float from string with comma (3,2): 3.2
How can I convert it to float and make the result to be 3.2?