使用 XSD 生成的类在 VB 中读取 XML 的示例
我使用 Visual Studio 中的 XSD.exe 实用程序生成了 Visual Basic 类。我想知道是否有人有一个如何在 Visual Basic 中处理数据的示例。 MSDN 上的例子很差。给我指出示例代码,即使是在 Csharp 中,也可以。
I have generated a Visual Basic class by using the XSD.exe utility in Visual Studio. I was wondering if anyone had an example of how you process the data in Visual Basic. The examples on MSDN are pretty poor. Pointing me to example code, even in Csharp, would be fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个从 XSD 生成的类
MyClass
,并且您有一个包含适合MySample.xml
中该类的 XML 数据的文件,您可以执行类似的操作这个(抱歉,我不太懂 VB - 这是 C#):这有帮助吗?
Assuming you have a class
MyClass
that's been generated from your XSD, and you have a file with XML data that fits that class inMySample.xml
, you'd do something like this (sorry, I'm not fluent in VB - this is C#):Does that help??