system language
C#
2
Posts
2
Posters
0
Views
1
Watching
-
how do i get operating system's language? Orcun Colak
-
how do i get operating system's language? Orcun Colak
Use
CultureInfo.CurrentCulture
to get what language is set in the regional options (for formatting dates, times, and numbers). UseCultureInfo.CurrentUICulture
to get the current language pack installed and in use. The CLR sets this automatically when the application is started, but you can also set the similarily named properties on theThread
class to override the default regional and language options.Microsoft MVP, Visual C# My Articles