I'm parsing a xml file containing strings like "91.899,74" (which is the correct format in my country) which I would like to convert into a float using float.Parse() but I can't get it to work without replacing "." with "" and "," with "."
If I don't do the replacements I get input was not in the correct format exception.
Any ideas on how to do the convert ?