3
我有一個Windows窗體C#應用程序。 我想添加一個xml文件到這個.exe 這個xml文件必須是.exe文件的一部分。 我該怎麼做,如何才能訪問程序中的xml文件。如何將xml文件作爲資源添加到Windows Forms exe中
我曾嘗試是這樣的:
Stream st = Assembly.GetExecutingAssembly().GetManifestResourceStream("CApp.xmlfile.xml");
StreamReader reader = new StreamReader(st);
doc = XElement.Load(reader);
建立xml文件操作是「嵌入的資源」
見http://www.cs.nyu.edu/~vs667/articles/embed_executable_tutorial/加載 –