ฉันจะวนซ้ำรายการและคว้าแต่ละรายการได้อย่างไร
ฉันต้องการให้ผลลัพธ์เป็นดังนี้:
Console.WriteLine("amount is {0}, and type is {1}", myMoney.amount, myMoney.type);
นี่คือรหัสของฉัน:
static void Main(string[] args)
{
List<Money> myMoney = new List<Money>
{
new Money{amount = 10, type = "US"},
new Money{amount = 20, type = "US"}
};
}
class Money
{
public int amount { get; set; }
public string type { get; set; }
}
foreach
จะไม่ลอกแบบวัตถุ ..