由于某种原因,ToDictionary无效。
我正在使用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 :(得分:2)
添加
using System.Linq;