How to get System Language?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
I need to know the current system language , I found that code :
Bll.Language.Language.GetSystemLanguage(language);
but i don't know the namespace of Bll thanksjooooo
-
I need to know the current system language , I found that code :
Bll.Language.Language.GetSystemLanguage(language);
but i don't know the namespace of Bll thanksjooooo
Hi The
Bll.Language.Language
namespace is not part of the .NET framework. The namespace you are interested in is: System.Globalization.Cultureinfo[^]. There are some good code examples further down that page.