私は次のコードを持っています:
List<Dictionary<string, string>> allMonthsList = new List<Dictionary<string, string>>();
while (getAllMonthsReader.Read()) {
Dictionary<string, string> month = new Dictionary<string, string>();
month.Add(getAllMonthsReader["year"].ToString(),
getAllMonthsReader["month"].ToString());
allMonthsList.Add(month);
}
getAllMonthsReader.Close();
今、私は次のようにすべての月をループしようとしています:
foreach (Dictionary<string, string> allMonths in allMonthsList)
キー値にアクセスするにはどうすればよいですか? 私は何か間違ったことをしていますか?