Working on a system that needs a list of all countries, I've found that the common "trick" (*) of using CultureInfo RegionInfo 给出的列表不完整(例如,缺少古巴)。

(*)有关示例,请参见Country List for ComboBox or DropDown from .NET Globalization Namespace

既然这种方法失败了,那么有什么更好的方法呢?

我想我们可以回过头来添加数据库表并手动填充国家/地区列表,但是肯定有一种更聪明的方法。

最佳答案

还有一些提供此类数据的网络服务,因此也许您可以定期使用web service call并将其存储到本地数据存储区(例如数据库或XML)。

关于c# - 如何找到国家名单?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8733935/

10-17 01:51