我有一个包含 List< & gt;
对象类。 对于这个示例, 我会说对象是以下基本类 :
public class City
{
private string name;
private string country;
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
}
通常情况下,我将提及这些物体,就象这样:
List<City> theList = new List<City>();
City theCity = theList[0];
我想提到的清单如下:
List<City> theList = new List<City>();
City theCity = theList["London"];
伦敦是其中一个城市的名称财产
如何做到呢?目前我一直在构建“找到”的方法, 将所在的城市交还给我。我所需要的是能够用Key来表示。