我有一个名为Country
的模型对象:
class Country
{
public string Name { get; set; }
public string Code { get; set; }
public Region[] Regions {get;set;}
public URI[] Uris {get;set;}
}
并通过WebService我想在几个版本中获得这个国家:
他们给出了什么名字?
这适用于英国的客户。抱歉我的英语不好。
答案 0 :(得分:2)
以下是我的选择:
答案 1 :(得分:2)
这是为了命名方法来返回Country对象并减少传输的数据量吗?
怎么样:国家(bool includeRegions,bool includeURIs)