久久久久久久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>

                          • 主站蜘蛛池模板: 国产精品国产三级国产aⅴ入口 | 国产精品日韩欧美一区二区三区 | 日日干日日操 | av在线免费观看网站 | 国产成人在线视频 | 欧美久久久久久久久 | 99久久精品免费视频 | 亚洲一区二区视频在线观看 | av一级毛片 | 国产一区二区在线播放 | 久久久久久亚洲 | 欧美 日韩 视频 | 成人在线中文字幕 | 91在线成人 | 黄a免费网络 | 亚洲一二视频 | 久久久久久综合 | 在线观看一区 | 精品视频一区二区三区在线观看 | 91在线视频国产 | 日韩毛片网 | 国内自拍偷拍视频 | 国产剧情一区 | 91原创视频 | 中国一级毛片免费 | 免费观看一级黄色录像 | 日本一二区视频 | www.奇米| 欧美一级大片免费看 | 中文字幕乱码一区二区三区 | 精品国产一区二区三区性色av | 亚洲国产乱码 | 蜜桃视频在线观看免费视频网站www | 亚洲区一 | 亚洲国产一区视频 | 欧美在线一区二区视频 | 欧美在线一区二区三区 | 91视频在线| 人人艹人人 | 亚洲国产欧美一区 | 久久日本 |