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

  • <tfoot id='zqe1W'></tfoot>

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

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

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

        為什么 XSD.EXE 會創建兩個 .XSD 文件,以及如何使

        Why does XSD.EXE Create Two .XSD Files, and How to Use Them?(為什么 XSD.EXE 會創建兩個 .XSD 文件,以及如何使用它們?)
      1. <tfoot id='7M62P'></tfoot>

              <bdo id='7M62P'></bdo><ul id='7M62P'></ul>

            • <legend id='7M62P'><style id='7M62P'><dir id='7M62P'><q id='7M62P'></q></dir></style></legend>

                <small id='7M62P'></small><noframes id='7M62P'>

                <i id='7M62P'><tr id='7M62P'><dt id='7M62P'><q id='7M62P'><span id='7M62P'><b id='7M62P'><form id='7M62P'><ins id='7M62P'></ins><ul id='7M62P'></ul><sub id='7M62P'></sub></form><legend id='7M62P'></legend><bdo id='7M62P'><pre id='7M62P'><center id='7M62P'></center></pre></bdo></b><th id='7M62P'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='7M62P'><tfoot id='7M62P'></tfoot><dl id='7M62P'><fieldset id='7M62P'></fieldset></dl></div>
                    <tbody id='7M62P'></tbody>
                  本文介紹了為什么 XSD.EXE 會創建兩個 .XSD 文件,以及如何使用它們?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我正在使用以下命令從我的輸入 XML 文件生成相關的 xsd 文件——response.xml,我的困惑是(1)為什么有兩個 xsd 文件輸出(response.xsd 和 response_app1.xsd),我想應該只生成其中一個?(2) 如果我需要使用 xsd/classes 生成 C# 類文件,我應該使用哪個 xsd 文件?

                  I am using the following command to generate related xsd file from my input XML file -- response.xml, my confusion is (1) why there are two xsd file output (response.xsd and response_app1.xsd), I think there should be only one of them generated? (2) If I need to generate C# class file by using xsd /classes, which xsd file should I use?

                  我的環境:VSTS 2008 + C# + .Net 3.5.

                  My environment: VSTS 2008 + C# + .Net 3.5.

                  D:>xsd response.xml
                  Microsoft (R) Xml Schemas/DataTypes support utility
                  [Microsoft (R) .NET Framework, Version 2.0.50727.3038]
                  Copyright (C) Microsoft Corporation. All rights reserved.
                  Writing file 'D:
                  esponse.xsd'.
                  

                  這是我的輸入 XML 文件和輸出 XSD 文件,

                  Here is my input XML file and ouput XSD files,

                  http://www.mediafire.com/file/kzzoxw0zwgq/inputoutput.zip

                  編輯 1:

                  當我執行xsd response.xsd生成相關C#類時,出現錯誤信息,這里是詳細輸出,

                  when I execute xsd response.xsd to generate related C# class, there are error messages, and here are the detailed output,

                  D:>xsd response.xsd /classes
                  Microsoft (R) Xml Schemas/DataTypes support utility
                  [Microsoft (R) .NET Framework, Version 2.0.50727.3038]
                  Copyright (C) Microsoft Corporation. All rights reserved.
                  Schema validation warning: The 'http://www.mycorp.com/Order/2009/05/mex:Items' e
                  lement is not declared. Line 10, position 16.
                  
                  Warning: Schema could not be validated. Class generation may fail or may produce
                   incorrect results.
                  
                  Error: Error generating classes for schema 'response'.
                    - The element 'http://www.mycorp.com/Order/2009/05/mex:Items' is missing.
                  
                  If you would like more help, please type "xsd /?".
                  

                  提前致謝,喬治

                  推薦答案

                  喬治,

                  要從這些文件中生成類,您必須在命令行中列出兩者:

                  To generate classes from these files, you must list both on the command line:

                  D:>xsd response.xsd response_app1.xsd /classes 
                  

                  <小時>

                  已經正確地說這兩個 .xsd 文件是因為您的原始 XML 文件中有兩個 XML 命名空間.順便說一句,我在這里猜測了一下,因為您沒有發布 XML 文件.


                  It has already been correctly said that the two .xsd files are because there were two XML namespaces in your original XML file. BTW, I'm guessing a little here because you did not post the XML file.

                  這篇關于為什么 XSD.EXE 會創建兩個 .XSD 文件,以及如何使用它們?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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)

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

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

                          <tbody id='W3Bdt'></tbody>
                        <tfoot id='W3Bdt'></tfoot>
                      1. <legend id='W3Bdt'><style id='W3Bdt'><dir id='W3Bdt'><q id='W3Bdt'></q></dir></style></legend>

                          • <bdo id='W3Bdt'></bdo><ul id='W3Bdt'></ul>

                          • 主站蜘蛛池模板: 福利精品在线观看 | 欧美一区二 | 成人av免费| 在线观看视频91 | 国产精品天堂 | 久草精品视频 | 国产激情视频网址 | 午夜精品久久久 | 日韩精品一区二区三区在线观看 | av中文字幕在线观看 | 一区二区三区视频播放 | 国产精品99一区二区 | 成人精品一区二区 | 欧美一区在线视频 | 久在线 | 亚洲在线 | 天天色综 | av第一页 | 日韩免费网站 | 九色 在线 | 成人不卡视频 | 国产视频三级 | 国产激情在线 | 国产精品中文字幕在线播放 | 1204国产成人精品视频 | 免费视频二区 | 成年人在线观看 | 国产高清一区二区 | 国产一区2区 | 国产精品一区一区三区 | 久久久久香蕉视频 | 一级黄色毛片免费 | 97超碰成人| 中文字幕日韩欧美一区二区三区 | 国产福利一区二区 | 在线观看免费黄色片 | 一区二区在线不卡 | 国产精品一区二区久久 | 亚洲精品免费在线观看 | 亚洲在线免费观看 | 久热久热 |