Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CultureInfo frenchCultureInfo = New CultureInfo("fr-FR");
NumberFormatInfo frenchNumbering = frenchCultureInfo.NumberFormat;
// French (france) decimal seperator is:
string frenchDecimal = frenchNumbering.NumberDecimalSeparator;
NumberFormatInfo currentNumbering = CurrentInfo.NumberFormatInfo;
// thread's decimal seperator is:
string threadDecimal = currentNumbering.NumberDecimalSeparator;