指引网

当前位置: 主页 > 编程开发 > C >

C#对XML操作:建立XML(3)

来源:网络 作者:佚名 点击: 时间:2017-07-19 22:58
[摘要] 
<?xml version="1.0" standalone="yes"?>
<users>
  <xs:schema id="users" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
      <xs:element name="users" msdata:IsDataSet="true" msdata:Locale="zh-CN">
      <xs:complexType>
     <xs:choice maxOccurs="unbounded">
     <xs:element name="user">
         <xs:complexType>
         <xs:sequence>
             <xs:element name="userName" type="xs:string" minOccurs="0" msdata:Ordinal="0" />
             <xs:element name="userPass" type="xs:string" minOccurs="0" msdata:Ordinal="1" />
         </xs:sequence>
         <xs:attribute name="id" type="xs:string" />
         </xs:complexType>
     </xs:element>
     </xs:choice>
      </xs:complexType>
      </xs:element>
  </xs:schema>
  <user id="1">
      <userName>outrace</userName>
------分隔线----------------------------