私はこの辞書を持っています:
KEY VALUE
08/10/2013, 00:00:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:01:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:02:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:03:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:04:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:05:00, a, b, c, d, e, f, g, h, i
08/10/2013, 00:06:00, a, b, c, d, e, f, g, h, i
日付と時刻がキーで、「a、b、c、d、e、f、g、h、i」が値です。
上記の辞書を に入れたいと思いDataTable
ます。
どうすればいいですか?2 つのforeach
ループを使用しますか?
private static void DictonaryTodataTable (DataTable dtResult, Dictionary <DateTime, CommaSeparatedList> CSVData)
{
foreach (KeyValuePair item in <DateTime, CommaSeparatedList> CSVData)
{
DtResult.NewRow DataRow dr = ();
[ CODE ]
dtResult.Rows.Add (dr);
}
}