1
A
回答
10
Dictionary<string, List<DateTime>> dict = new Dictionary<string, List<DateTime>>();
需要注意的是,添加新項目時,你需要分配一個新的列表值:
string key; // assuming that's your key
List<DateTime> value;
if (!dict.TryGetValue(key, out value)) {
value = new List<DateTime>();
dict.Add(key, value);
}
// value is now always a valid instance
1
Dictionary<string, List<DateTime>>
+0
您可能必須更具體一些。 – 2009-09-04 13:17:49
2
var dict = new Dictionary<string, List<DateTime>>();
善良,
丹
1
Dictionary<string, List<DateTime>> oDictionary;
1
也許就像:
Dictionary<String, List<DateTime>> myDict = new Dictionary<String, List<DateTime>>();
相關問題
- 1. ConcurrentDictionary <TKey,TValue> VS字典<TKey,TValue>
- 2. 如何獲取Dictionary <TKey,TValue>的所有值作爲IList <TValue>?
- 3. 不可變的字典<TKey,TValue>
- 4. Java字典<String,List <Object>>
- 5. 如何使用泛型將字典中的TValue轉換爲列表<TValue>
- 6. 轉換字典<TKEY的,列表<TValue>>到ReadOnlyDictionary <TKEY的,ReadOnlyCollection <TValue>>
- 7. 爲什麼不能/不能IDictionary <TKey,TValue>實施ILookup <TKey,TValue>?
- 8. 自己添加方法的字典<TKey,TValue>需要表達式<Func<T>>作爲參數
- 9. 將IGrouping <TKey,TValue>轉換爲IDictionary的推薦方法<TKey,IEnumerable <TValue>>
- 10. 如何將IDictionary <TKey,列表<TValue>>轉換爲IDictionary <TKey,IEnumerable <TValue>>?
- 11. 如何獲得給定類型的TKey和TValue字典<TKey,TValue>類型
- 12. 字典<TKey,TValue>比列表上的LINQ更快<T>?
- 13. 創建擴展方法TryGetValue可枚舉的(TKEY的,出TValue)<KeyValuePair <TKEY的,TValue >>就像字典的<TKEY的,TValue>中
- 14. 在隔離存儲中存儲字典<TKey,TValue>
- 15. C#字典<TKey,TValue>是否保證迭代順序?
- 16. .net中字典<TKey,TValue>的基礎數據結構.net
- 17. 反序列化xml字典<TKey,TValue>與DataContactSerializer
- 18. 序列化字典<TKey,TValue>與JSON與DataContractJsonSerializer
- 19. 默認情況下按字典<TKey,TValue>排序嗎?
- 20. 嵌套接口:將IDictionary <TKey,IList <TValue>>轉換爲IDictionary <TKey,IEnumerable <TValue>>?
- 21. 表達式<Func <TModel,TValue >>我怎麼能得到TValue的名字?
- 22. 這個詞典如何<TKey,TValue>例外成爲可能?
- 23. 語法<(中<(<'TKEY的,TValue>中)>)> .. ::枚舉
- 24. 詞典<字符串,MyClass的>爲List <KeyValuePair <字符串,字符串>>其中KeyValuePair值是MyClass.ToString()
- 25. 初始化字典<字符串,字符串>自List <string>
- 26. WCF IDictionary <TKey,TValue> - 如何指示TValue可以爲空?
- 27. IList <InterfaceType>爲List <ImplementsInterfaceType>?
- 28. 從字典<int,List <Tuple <string,object >>>到Dictionary <int,List <Tuple <string,object,AnEnum >>> with LINQ
- 29. 使用表達式<Func<object>>作爲字典中的關鍵字
- 30. Casting List <Concrete> to List <InheritedInterface> without .ToList()複製操作
+1:我2秒已晚...; O) – 2009-09-04 13:16:36
OOOOoooops .....我是喝醉了嗎? ....可能我試過這個,但可能不是這個:)。謝謝 – 2009-09-04 13:22:48