我正在尝试使用Linq将简单的XML文档读入内存。
但是当我尝试使用XElement.Load方法时,Visual Studio似乎根本无法识别它。
我已经导入了System.Linq和System.Xml.linq库但是.load只是不起作用。
使用的框架是“.NET 3.5”。
我忽略了什么愚蠢的细节?如果有帮助,可以使用以下代码。
using System.Linq;
using System.Xml.Linq;
using System.Xml.XPath;
...
private void AddTechHours(string Locatie, DateTime StartTijd, DateTime EindTijd, TimeSpan TotaalTijd)
{
XElement Doc = new XElement.Load(Locatie);
XElement Hours = new XElement("Line",
new XElement("S_Code", null),
new XElement("S_Artikel", "URE000099999"),
new XElement("S_Omschr", "Totaal Uren Mekanieker"),
new XElement("S_Aantal", TotaalTijd.Hours),
new XElement("S_Stockpl", "1"),
new XElement("S_Srtregel", "2"),
new XElement("S_Vanuur", StartTijd.ToString("HH:mm")),
new XElement("S_Totuur", EindTijd.ToString("HH:mm")),
new XElement("S_Vankm", null),
new XElement("S_Totkm", null),
new XElement("S_Reflev", null),
new XElement("S_Artcode", null),
new XElement("S_Levdat", DateTime.Now.ToString("yyyyMMdd")));
Doc.Add(Hours);
Doc.Save(Locatie);
}
答案 0 :(得分:3)
加载是一种静态方法,试试这个:
XElement Doc = XElement.Load(Locatie);
答案 1 :(得分:2)