I am parsing a string number like 100.2543 to a double.
double actualValue = double.Parse(stringToParse, NumberStyles.Any, CultureInfo.CurrentCulture.NumberFormat);
What is the difference to the same method but not using NumberStyles.Any? Is .Any by default?
double actualValue = double.Parse(stringToParse,CultureInfo.CurrentCulture.NumberFormat);