Wie kann ich eine Liste durchlaufen und jedes Element abrufen?
Ich möchte, dass die Ausgabe folgendermaßen aussieht:
Console.WriteLine("amount is {0}, and type is {1}", myMoney.amount, myMoney.type);
Hier ist mein Code:
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
klont die Objekte nicht ..