Dictionary
1つのキーの下に多くの異なる値を格納するにはどうすればよいですか?
私はここにコードを持っています:
Dictionary<string, DateTime> SearchDate = new Dictionary<string, DateTime>();
SearchDate.Add("RestDate", Convert.ToDateTime("02/01/2013"));
SearchDate.Add("RestDate", Convert.ToDateTime("02/28/2013"));
しかし、辞書で私は1つの一意のキーしか許可されていないことを知りました。そのため、私のコードはエラーを生成しています。