gpt4 book ai didi

c# - 如何在类库项目中引用xml文件

转载 作者:可可西里 更新时间:2023-11-01 08:24:12 26 4
gpt4 key购买 nike

我有一个类库项目。在其中一个类中,我需要访问一个 XML 文件。如何在类中引用此文件的路径?该文件位于同一项目的其中一个文件夹中。

最佳答案

如果你specify the Xml file to be compiled into your assembly您可以在运行时使用反射读取它。

Assembly asm = Assembly.GetExecutingAssembly();
XmlDocument doc = new XmlDocument();
XmlTextReader reader = new XmlTextReader(asm.GetManifestResourceStream("MyNamespace.MyXmlFile.xml"));
doc.Load(reader);

更新

由于 X509Certificate2 构造函数只接受证书文件的文件路径或字节数组,因此您可能希望使用证书文件的可配置路径,而不是将其嵌入到程序集中。

关于c# - 如何在类库项目中引用xml文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6078283/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com