I have a case that I have to get the language defined by admin. I know how to do language supported web sites such as http://www.codeproject.com/Articles/163215/Dynamic-definition-of-the-list-of-available-langua
Thread.CurrentThread.CurrentCulture =
CultureInfo.CreateSpecificCulture(language);
Thread.CurrentThread.CurrentUICulture = new CultureInfo(language);
}
but the consumer wants to define the language so he doesnt need me to change the source code everytime he wants to add a new language. I have been searching but reached to nothing. Could anyone give me any idea how to do that?