最佳答案
我做了一个字典,其中包含两个值: 一个 DateTime
和一个 string
。
现在我想打印从字典到文本框的所有内容。 有人知道怎么做吗?
我使用这段代码将字典打印到控制台:
private void button1_Click(object sender, EventArgs e)
{
Dictionary<DateTime, string> dictionary = new Dictionary<DateTime, string>();
dictionary.Add(monthCalendar1.SelectionStart, textBox1.Text);
foreach (KeyValuePair<DateTime, string> kvp in dictionary)
{
//textBox3.Text += ("Key = {0}, Value = {1}", kvp.Key, kvp.Value);
Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value);
}
}