Software Development Network>> Visual C#>> String format
You can parse with a specific culture if you want, use the code like this:
String format
Brad Smith
You can parse with a specific culture if you want, use the code like this:
CultureInfo cultureInfo = CultureInfo.CreateSpecificCulture("nl-NL");
float x = float.Parse(textBox2.Text, NumberStyles.Any, cultureInfo);