久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='tH8P8'></bdo><ul id='tH8P8'></ul>
<legend id='tH8P8'><style id='tH8P8'><dir id='tH8P8'><q id='tH8P8'></q></dir></style></legend>
  • <tfoot id='tH8P8'></tfoot>

      <small id='tH8P8'></small><noframes id='tH8P8'>

        <i id='tH8P8'><tr id='tH8P8'><dt id='tH8P8'><q id='tH8P8'><span id='tH8P8'><b id='tH8P8'><form id='tH8P8'><ins id='tH8P8'></ins><ul id='tH8P8'></ul><sub id='tH8P8'></sub></form><legend id='tH8P8'></legend><bdo id='tH8P8'><pre id='tH8P8'><center id='tH8P8'></center></pre></bdo></b><th id='tH8P8'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='tH8P8'><tfoot id='tH8P8'></tfoot><dl id='tH8P8'><fieldset id='tH8P8'></fieldset></dl></div>

        XSD:使用 Visual Studio xsd.exe 不生成 Array[] 而不是

        XSD: Using Visual studio xsd.exe not generating Array[] instead of Listlt;gt;(XSD:使用 Visual Studio xsd.exe 不生成 Array[] 而不是 Listlt;gt;)

          <bdo id='hKFcj'></bdo><ul id='hKFcj'></ul>

              <i id='hKFcj'><tr id='hKFcj'><dt id='hKFcj'><q id='hKFcj'><span id='hKFcj'><b id='hKFcj'><form id='hKFcj'><ins id='hKFcj'></ins><ul id='hKFcj'></ul><sub id='hKFcj'></sub></form><legend id='hKFcj'></legend><bdo id='hKFcj'><pre id='hKFcj'><center id='hKFcj'></center></pre></bdo></b><th id='hKFcj'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hKFcj'><tfoot id='hKFcj'></tfoot><dl id='hKFcj'><fieldset id='hKFcj'></fieldset></dl></div>
              • <tfoot id='hKFcj'></tfoot>

                <small id='hKFcj'></small><noframes id='hKFcj'>

                  <tbody id='hKFcj'></tbody>
              • <legend id='hKFcj'><style id='hKFcj'><dir id='hKFcj'><q id='hKFcj'></q></dir></style></legend>
                • 本文介紹了XSD:使用 Visual Studio xsd.exe 不生成 Array[] 而不是 List&lt;&gt;的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我正在使用 xsd.exe 工具從 xsd 文件生成類.xsd 文件:

                  Im using the xsd.exe tool to generate classes from a xsd file. The xsd file:

                  <?xml version="1.0" encoding="UTF-8"?>
                  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"  elementFormDefault="qualified"      attributeFormDefault="unqualified">
                  <xs:element name="BAXML">
                  <xs:annotation>
                    <xs:documentation></xs:documentation>
                  </xs:annotation>
                  <xs:complexType>
                    <xs:sequence>      
                      <xs:element name="Limit" minOccurs="1" maxOccurs="10">    
                       <xs:complexType>
                          <xs:sequence>
                            <xs:element name="LimitType">
                              <xs:annotation>
                                <xs:documentation></xs:documentation>
                              </xs:annotation>
                              <xs:simpleType>
                                <xs:restriction base="xs:string">
                                  <xs:minLength value="3"/>
                                  <xs:maxLength value="10"/>
                                </xs:restriction>
                              </xs:simpleType>
                            </xs:element>
                            <xs:element name="Amount">
                              <xs:annotation>
                                <xs:documentation></xs:documentation>
                              </xs:annotation>
                              <xs:simpleType>
                                <xs:restriction base="xs:int">
                                </xs:restriction>
                              </xs:simpleType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                    </xs:sequence>
                  </xs:complexType>
                  

                  輸出是:

                  /// <remarks/>
                  [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
                  [System.SerializableAttribute()]
                  [System.Diagnostics.DebuggerStepThroughAttribute()]
                  [System.ComponentModel.DesignerCategoryAttribute("code")]
                  [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
                  [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
                  public partial class BAXML {
                  
                  private string counterpartyOrgNrField;
                  
                  private BAXMLLimit[] limitField;
                  
                  
                  /// <remarks/>
                  [System.Xml.Serialization.XmlElementAttribute("Limit")]
                  public BAXMLLimit[] Limit {
                      get {
                          return this.limitField;
                      }
                      set {
                          this.limitField = value;
                      }
                  }}
                  
                  /// <remarks/>
                  [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
                  [System.SerializableAttribute()]
                  [System.Diagnostics.DebuggerStepThroughAttribute()]
                  [System.ComponentModel.DesignerCategoryAttribute("code")]
                  [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
                  public partial class BAXMLLimit {
                  
                  private string limitTypeField;
                  
                  private int amountField;
                  
                  /// <remarks/>
                  public string LimitType {
                      get {
                          return this.limitTypeField;
                      }
                      set {
                          this.limitTypeField = value;
                      }}
                  
                  /// <remarks/>
                  public int Amount {
                      get {
                          return this.amountField;
                      }
                      set {
                          this.amountField = value;
                      }
                  }}
                  

                  代替:

                  private BAXMLLimit[] limitField;
                  

                  我希望它是

                  List<BAXMLLimit> limitField
                  

                  xsd 中有沒有辦法做到這一點?還是其他方式?謝謝!

                  Is there a way in the xsd todo this? Or some other way? Thx!

                  推薦答案

                  嘗試使用 xsd2code.這比 xsd.exe 效果更好.您還可以通過設置 CollectionObjectType 屬性來指定您希望您的集合如何成為一個選項.列表或數組.

                  Try using xsd2code. This works better than xsd.exe. You can also specify as an option how you want your collections to be.. List or an Array by setting the CollectionObjectType property.

                  這篇關于XSD:使用 Visual Studio xsd.exe 不生成 Array[] 而不是 List&lt;&gt;的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  What are good algorithms for vehicle license plate detection?(車牌檢測有哪些好的算法?)
                  onClick event for Image in Unity(Unity中圖像的onClick事件)
                  Running Total C#(運行總 C#)
                  Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時刪除目錄)
                  asp.net listview highlight row on click(asp.net listview 在單擊時突出顯示行)
                  Calling A Button OnClick from a function(從函數調用按鈕 OnClick)
                • <small id='FVm96'></small><noframes id='FVm96'>

                  <legend id='FVm96'><style id='FVm96'><dir id='FVm96'><q id='FVm96'></q></dir></style></legend>
                      <tbody id='FVm96'></tbody>
                      <bdo id='FVm96'></bdo><ul id='FVm96'></ul>

                        <tfoot id='FVm96'></tfoot>
                            <i id='FVm96'><tr id='FVm96'><dt id='FVm96'><q id='FVm96'><span id='FVm96'><b id='FVm96'><form id='FVm96'><ins id='FVm96'></ins><ul id='FVm96'></ul><sub id='FVm96'></sub></form><legend id='FVm96'></legend><bdo id='FVm96'><pre id='FVm96'><center id='FVm96'></center></pre></bdo></b><th id='FVm96'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='FVm96'><tfoot id='FVm96'></tfoot><dl id='FVm96'><fieldset id='FVm96'></fieldset></dl></div>
                            主站蜘蛛池模板: 精品美女视频在线观看免费软件 | 国产成人精品一区二区三区在线 | 欧美综合在线视频 | 精品亚洲第一 | 91精品久久久久久久久久小网站 | 日本精品视频一区二区 | 成人教育av | 欧美黑人一区二区三区 | 亚洲一区二区三区四区五区中文 | 亚洲高清视频一区 | 日本视频在线播放 | 超碰免费在线观看 | 久久综合久色欧美综合狠狠 | 亚洲美女视频 | 99精品观看 | 中文字幕av色 | 久久精品免费观看 | 在线播放精品视频 | 中文字幕欧美一区二区 | 亚洲国产自产 | 一区视频| 播放一级毛片 | 欧美性猛交一区二区三区精品 | 欧洲免费视频 | av网站免费| 成人片免费看 | 日韩免费一区 | 99在线免费观看视频 | 精品免费国产一区二区三区四区 | 黄网站涩免费蜜桃网站 | a久久| 中文字幕一区二区三 | 一级黄色片一级黄色片 | 欧美一区二区三区在线看 | 在线高清免费观看视频 | 欧美成人综合 | 久草在线| 中文字幕在线看人 | 国偷自产av一区二区三区 | 欧美视频日韩 | 毛片免费在线观看 |