私はこのようなクラスのリストを持っています:
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));
しかし、うまくいきません...
何か案が?!