With the full .NET platform, you can get / set the current thread culture and user interface culture using:
Thread.CurrentThread.CurrentCulture = culture; Thread.CurrentThread.CurrentUICulture = culture;
I am netstandard1.n library to netstandard1.n ( n must be defined) and the detected Thread class does not define CurrentCulture and CurrentUICulture .
Is there an alternative API for this?
source share