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
var value = g.Latitude.ToString("0.000000") + ";" + g.Longitude.ToString("0.000000");
Does not work like expected when you use culture with comma decimal separator (dot is only allowed separator).
Invariant culture should be specified here var value = g.Latitude.ToString("0.000000", CultureInfo.InvariantCulture.NumberFormat) + ";" + g.Longitude.ToString("0.000000", CultureInfo.InvariantCulture.NumberFormat);
The text was updated successfully, but these errors were encountered:
var value = g.Latitude.ToString("0.000000") + ";" + g.Longitude.ToString("0.000000");
Does not work like expected when you use culture with comma decimal separator (dot is only allowed separator).
Invariant culture should be specified here
var value = g.Latitude.ToString("0.000000", CultureInfo.InvariantCulture.NumberFormat) + ";" + g.Longitude.ToString("0.000000", CultureInfo.InvariantCulture.NumberFormat);
The text was updated successfully, but these errors were encountered: