You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use this with non-English culture settings the number parsing does not work as expected.
Change all float.Parse(str) into float.Parse(str, CultureInfo.InvariantCulture.NumberFormat); to make it work.
If you use this with non-English culture settings the number parsing does not work as expected.
Change all
float.Parse(str)intofloat.Parse(str, CultureInfo.InvariantCulture.NumberFormat);to make it work.