How to Read XSD values into text file using .NET?
Are you looking for a way to Read XSD values into text file using .NET? then read this thread to know how to read it
Hi,
My sample XSD is like below, now I want to read this simpletype values and display into one text file. I did maximum part but I'm unable to complete this union case. Can anybody help me to clear this.
<xs:simpleType name="file-number">
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:totalDigits value="3"/>
<xs:minInclusive value="1"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="preserve"/>
<xs:enumeration value=""/>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
Regards,
Naveen