xsd 通用树结构,使用 xsd.exe 编译为对象模型
假设我希望我的 xml 包含任意数量的容器标签,其中每一个标签又包含任意数量的容器标签,依此类推。 xsd 会是什么样子?
PS
我希望这个 xsd 被编译成类。
非常感谢。
say i want my xml to include any number of CONTAINER tags, which every one of those to include yet again any number of container tags, and so on. how would the xsd look like?
p.s.
i want this xsd to be compiled to classes.
thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XSD 可能如下所示:
符合此架构的 XML 可能如下所示:
它可以嵌套到任意深度。
生成如下类:
xsd.exe /c Foo.xsd
。这些类看起来像这样:The XSD might look like this:
The XML that conforms to this schema might look like this:
It can nest to arbitrary depth.
Generate the classes like this:
xsd.exe /c Foo.xsd
. The classes look like this: