EN-US, (English United States) and other values needed

  • Thread starter Thread starter Mark B
  • Start date Start date
M

Mark B

I want to populate two fields in an SQL table with these:

Language Code Description
---------------- ---------------------------------

EN-US English (United States)
EN-GB English (Great Britain)
FR-FR French (France)
etc

Does anyone know where I can get this list in its entirety, up-to-date and
CSV? It's for an ASP.Net 3.5 website.

TIA
 
I want to populate two fields in an SQL table with these:

Language Code        Description
----------------        ---------------------------------

EN-US                    English (United States)
EN-GB                   English (Great Britain)
FR-FR                    French (France)
etc

Does anyone know where I can get this list in its entirety, up-to-date and
CSV? It's for an ASP.Net 3.5 website.

TIA

foreach ( CultureInfo ci in
CultureInfo.GetCultures( CultureTypes.SpecificCultures ) ) {
...
}

http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.aspx
 
Back
Top