I'm working with VS 2015 on a WPF-application, in which the user can change the application language at runtime.
At this point of time we are not working with multiple threads but maybe this will come.
The big question is, which property of the CultureInfo-class is the best to set for all threads of the application?
There are four candidates:
CultureInfo.CurrentCulture
CultureInfo.CurrentUICulture
CultureInfo.DefaultThreadCurrentCulture
CultureInfo.DefaultThreadCurrentUICulture
According to this article it seems to be CultureInfo.DefaultThreadCurrentCulture and CultureInfo.DefaultThreadCurrentUICulture, but i'm not sure.
Thanks in advance!