In need to populate a combo with the list of all the countries.
I the the RegionInfo Class, but is there a way to get a collections of all
the available RegionInfo
Thanks
Jerome
There is no enumeration method for RegionInfo objects (though it is on the
list of things to get in there at some point). The only way to do it
presently is to use the GetCultures() method to get all the specific
cultures (CultureTypes.SpecificCultures) and then create a RegionInfo out of
each LCID, checking for unique region codes to avoid duplicates.

Signature
MichKa [MS]
NLS Collation/Locale/Keyboard Technical Lead
Globalization Infrastructure and Font Technologies
Windows International Division
This posting is provided "AS IS" with
no warranties, and confers no rights.
> In need to populate a combo with the list of all the countries.
> I the the RegionInfo Class, but is there a way to get a collections of all
[quoted text clipped - 3 lines]
>
> Jerome