所以我完全不熟悉編程;我已經閱讀了許多類似的問題和相應的答案,並且花費了更多的時間,而不是我想承認嘗試不同的方式來解決我的問題,但我似乎無法找到問題所在。無論如何,這是我的代碼:將結構存儲在列表中,然後顯示列表?
public struct City
{
public string cityName { get; set; }
public float cityTemp { get; set; }
}
class Program
{
static void Main(string[] args)
{
var cityList = new List<City>();
cityList.Add(new City
{
cityName = "Stockholm",
cityTemp = 22.65f
});
Console.WriteLine("List: ");
Console.WriteLine(cityList);
Console.ReadKey();
}
}
如何使列表存儲我的結構,以及如何正確顯示列表? 編輯:我知道我需要使用foreach,這個代碼只是我的問題的準系統表示。
完美,string.Format(...)是我一直在尋找的! – Welsing