我在我的解决道路上建立了XML档案。 我的解决办法有多个项目(其中一个项目是服务项目),因为其中一些项目需要参考XML档案。
当我尝试和使用时
XDocument configXML = new XDocument.Load("Config.xml");
我犯了一个错误。
无法找到文号
我正在使用该系统。 Xml.Linq
因为我无法触及问题1,我受到审判
XElement rootElement = XElement.Load("Config.xml");
this worked, but when I run the program, i get an error:
无法找到xml文档
since it is searching in the ../Release folder, who can I copy the xml file to the release/debug/deployed folders?
需要一些援助!