在程序集中使用标记文件

时间:2010-11-03 08:51:15

标签: c#

如何从C#中的源代码在同一个程序集中打开xml或xsl文件? 有什么想法吗?

1 个答案:

答案 0 :(得分:3)

Google发现了这个

using System;
using System.IO;
using System.Reflection;
using System.Xml;

class Application
{
    static void Main(string[] args) 
    {
       Stream s = 
          Assembly.GetExecutingAssembly().GetManifestResourceStream("File1.xml");

       XmlDocument xdoc = new XmlDocument();

       using (StreamReader reader = new StreamReader(s))
           xdoc.LoadXml(reader.ReadToEnd());
    }
}