在我的申请中,我从网站下载了一些数据,提供人口、地貌地区等地貌信息。
After parsing html code, data are stored in list of objects
public class Landscape
{
public int Population { get; set; }
public string Area { get; set; }
}
public List<Landscape> data;
没有问题。 跟踪填充数据的方法以及我申请的目的。 现在,问题在哪里? 该网站的“区域信息”采用半数字、半指示格式。 例如:10 000平方公里。
I have possibility to choose whether to trim km2 suffix and store data as int, or do nothing about it and store data as string. Since I want have data in dataGrid in original format, I decided not to trim.
最后,是否有一个路要订购(面积大小)as int,尽管其位置是类型?