English 中文(简体)
Deploy XML文档并装载
原标题:Deploy XML file and load it

我在我的解决道路上建立了XML档案。 我的解决办法有多个项目(其中一个项目是服务项目),因为其中一些项目需要参考XML档案。

  1. 当我尝试和使用时

    XDocument configXML = new XDocument.Load("Config.xml");
    

我犯了一个错误。

无法找到文号

我正在使用该系统。 Xml.Linq

  1. 因为我无法触及问题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?

需要一些援助!

最佳回答
问题回答

Select the file in Solution Explorer, and set the file s "Copy to Output Directory" property to "Copy if newer" or "Always" and Build Action to "None"

正如尼克在评论这个问题时指出的那样,你在打上<代码>XDocument时不应使用新的关键词。 静态方法。

因此,

XDocument configXML = XDocument.Load("Config.xml");

工作





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签