我有一个这种格式的 xml 模式文档
<Schema xmlns="urn:schemas-microsoft-com:xml-data"
xmlns:dt="urn:schemas-microsoft-com:datatypes">
<AttributeType name="scale" default="4.0"/>
<ElementType name="GPA" content="textOnly" dt:type="float">
<attribute type="scale"/>
</ElementType>
<AttributeType name="studentID"/>
<ElementType name="student" content="eltOnly" model="open" order="many">
<attribute type="studentID"/>
<element type="GPA"/>
</ElementType>
</Schema>
我想从给定的模式生成 C# 中的类。我在网上查到 XSD.exe 只能从 W3C XML Schemas 生成类。有没有办法将此格式转换为 W3C?
我是 XSD 的新手,并尝试重写它,但遇到了很多错误。请帮忙。提前致谢