I found a lot of threads explaining how to get the country-codes in two- or three-letter format, but nothing that fits to my task. I'm heading for a way to get all the top level domains in an array or something. I know there's the CultureInfo class in C# but which could list the country codes. It doesn't include generic TLD, e.g.: "com". Here's the complete list of country codes I found.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The authoritative list of all TLDs: http://www.iana.org/domains/root/db
You can get this as TXT, too (easier to parse): http://data.iana.org/TLD/tlds-alpha-by-domain.txt Wikipedia also lists all TLDs, but it's not authoritative, of course: http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains |
||||
|
|
.comis not a country-code top-level domain (ccTLD), but a generic top-level domain (gTLD). – unor Jan 21 at 17:35