我的問題是,我想製作一個使用兩個列表,這幾乎是不可能的,我理解的程序。好的,這樣做的好處是,我想製作一個程序,首先輸入城市名稱,然後輸入城市的溫度。這是關係來自何處。兩個關係列表,如何將它們顯示給用戶?
我已讓「列表類」,它看起來像這樣開始:
class citytemp
{
private string city;
private double temp;
public citytemp(string city, double temp)
{
this.city = city;
this.temp = temp;
}
public string City
{
get { return city; }
set { city = value; }
}
public double Temp
{
get { return temp; }
set { temp = value; }
}
}
然後,我作出這樣
List<citytemp> temps = new List<citytemp>();
這一切看起來不錯,我在節目列表。但是,當我試圖向用戶顯示該列表時,什麼都沒有顯示出來。我使用這些線來顯示它:
for (int i = 0; i > temps.Count; i++)
{
Console.WriteLine(temps[i].City, temps[i].Temp);
}
BTW:我通過這些行添加 「東西」 到列表:
temps.Add(new citytemp(tempcity, temptemp));
...其中tempcity
和temptemp
是臨時變量。他們只有在那裏,使其更簡單,我將它們添加到列表中,因爲我使用的是switch
聲明將它們添加到列表中。
爲了讓事情更清晰,我的問題是,我不知道如何,我想以顯示列表中該程序的用戶。
感覺現在很愚蠢-.-「,但是要感謝你們所有人幫助我:) – 2013-03-23 16:57:58