Hi,
I have a situation where I save a string representation of dates/numbers etc in the DB, and since the application is run in multiple countries and sometimes with users in different countries using the same DB, I store the CurrentCulture.Name in the DB with the record so that when converting on the client side, it converts using the correct culture info. For example:
DateTime dt = Convert.ToDateTime(value, new CultureInfo(value.ClientCulture));
This works well, the question I have is, when calling new CultureInfo(value.ClientCulture), is it getting the CultureInfo from the .NET Framework or from Windows? I'm worried that if calling from Windows, if those languages arent installed, issues may arise. If calling from the .NET Framework itsself, then I see no issues.
Thanks