使用 CodeDOM 将 XML 嵌入到 Assembly 中
我有一个在运行时生成的 XML。我需要使用 CodeDOM 将此 XML 内容嵌入到程序集中。稍后将从程序集中访问 XML。
如何将 XML 嵌入到程序集中?我应该将 XML 作为 EmbeddedResources 包含在程序集中吗?
谢谢
I have an XML generated at runtime. I need to embed this XML content into an assembly using CodeDOM. The XML will be accessed later from the assembly.
How can I embed XML into assembly ? Should I include the XML as EmbeddedResources in the assembly ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,例如,使用
EmbeddedResources
属性。例如:xml 需要在文件中可用,才能将其作为资源嵌入。
Yes, for example, with the
EmbeddedResources
property. For example:The xml needs to be available in a file, in order to embed it as a resource.