2010-06-04 67 views
0

由於某些原因ToDictionary無法正常工作。爲什麼XElement沒有ToDictionary linq表達式?

我使用vs.net 2010和4.0

XElement root = XElement.Load(fullPathToXml);    
IEnumerable<XElement> nodes = root.Elements("root"); 

var dic = nodes.ToDictionary(...) 

我想將其轉換爲dictionary<string,string>

它說沒有確定指標爲 'ToDictionary' ......?

+0

什麼是確切的錯誤? – SLaks 2010-06-04 14:02:44

回答

2

添加

using System.Linq; 
+0

+1回到這個。 – 2010-06-04 14:01:34