我有一个这样的类的列表:
public class CityCodeInfo
{
public string CityName;
public string Province;
public string Code;
}
List<CityCodeInfo> lstCityt = new List<CityCodeInfo>();
我如何按任何变量(城市名、省和代码)对该列表进行排序
我试过这段代码:
lstCityt.Sort((x, y) => string.Compare(x.CityName, y.CityName));
但它不起作用......
任何的想法?!