如何从 Resources.resx 读取 .xml 文件?
我已将 .xml
文件添加到应用程序资源中。 现在我想访问该 xml 文件并使用 c#.net 中的该 xml 文件填充数据集
任何人都可以帮助我如何在 C#.net
中执行此操作
I have added a .xml
file to application resources.
Now I want to access that xml file and fill dataset using that xml file in c#.net
Can anyone help that how can i do this in C#.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这很容易。假设您的
resources.resx
中有一个名为YourXml
的文件:It is quite easy. Let's assume you have a file named
YourXml
in yourresources.resx
:这是一个示例,它没有添加到数据集,只是绑定到列表框;
1.xml
c#代码
XAML代码
Here is an example, it's not added to the dataset, just binding to a listbox;
1.xml
c# code
XAML code
在资源文件中,一个xml实际上就是一个字符串。您可以尝试
XDocument.Parse(Resources.YourResourceName, LoadOptions.None)
来解析您的 xml 字符串。希望有帮助。谢谢,
霍华德
In the resource file, an xml is actually a string. You can try
XDocument.Parse(Resources.YourResourceName, LoadOptions.None)
to parse your xml string. Hope it helps.Thanks,
Howard