Can someone confirm for me whether this code changes the culture for all users of the application, or just for the current user?
var cultureInfo = new CultureInfo("en-US");
CultureInfo.DefaultThreadCurrentCulture = cultureInfo;
CultureInfo.DefaultThreadCurrentUICulture = cultureInfo;
I want to show a combo with the different cultures accepted for the application and change the culture when I select it in the combo, but if I open the application in, for example Chrome and Firefox when I change in one, it seems that the culture changes in the other, and this is scary.