Reputation: 8606
In my application (MVC3) i have bind culture info list to dropdown and as per selection i have stored LCID value in DB. now i would like to get Culture using LCID, how can i obtain using LCID value?
Upvotes: 2
Views: 6290
Reputation: 35374
Just use the CultureInfo constructor:
new CultureInfo(myLCID);
This will return a CultureInfo object for the appropriate LCID.
More info:
Upvotes: 8