Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i need check language my system in project
Posted
Comments
Mahesh Bailwal 15-Sep-13 5:18am    
Please elaborate little more.
OriginalGriff 15-Sep-13 5:39am    
The OP posted as a solution:
"receipt Type The language installed on the system in C#"

1 solution

You can fetch the culture:
C#
CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;

But that only gets the culture that was in force when the application / current thread was started - if you actually need the current settings and they might change during your application execution, then you need to start a new thread and request the culture in that - then return it to the calling thread for processing.

The CultureInfo contains all the information you should need.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900