久久久久久久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 會創(chuàng)建兩個 .XSD 文件,以及如何使

        Why does XSD.EXE Create Two .XSD Files, and How to Use Them?(為什么 XSD.EXE 會創(chuàng)建兩個 .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 會創(chuàng)建兩個 .XSD 文件,以及如何使用它們?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  限時送ChatGPT賬號..

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

                  我的環(huán)境: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:

                  當(dāng)我執(zhí)行xsd response.xsd生成相關(guān)C#類時,出現(xiàn)錯誤信息,這里是詳細(xì)輸出,

                  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 
                  

                  <小時>

                  已經(jīng)正確地說這兩個 .xsd 文件是因?yàn)槟脑?XML 文件中有兩個 XML 命名空間.順便說一句,我在這里猜測了一下,因?yàn)槟鷽]有發(fā)布 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.

                  這篇關(guān)于為什么 XSD.EXE 會創(chuàng)建兩個 .XSD 文件,以及如何使用它們?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

                  What are good algorithms for vehicle license plate detection?(車牌檢測有哪些好的算法?)
                  onClick event for Image in Unity(Unity中圖像的onClick事件)
                  Running Total C#(運(yùn)行總 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(從函數(shù)調(diào)用按鈕 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>

                          • 主站蜘蛛池模板: 国产精品久久久久久久粉嫩 | 欧美综合一区二区 | 久久亚洲精品久久国产一区二区 | 亚洲欧美中文日韩在线v日本 | 日韩欧美在线观看 | 欧美精品日韩精品 | 亚洲一区二区三区在线 | 91 在线| 国产精品日韩欧美一区二区 | 亚洲国产精品久久 | 国产精品视频网址 | 成人午夜性成交 | 国产在线视频一区 | 丁香婷婷久久久综合精品国产 | 在线 丝袜 欧美 日韩 制服 | 亚洲品质自拍视频网站 | av片网| 日本欧美大片 | 日日日操 | 免费一区二区 | 毛片网络 | 怡红院怡春院一级毛片 | 国产精品1| 国产美女在线看 | 精品日韩一区 | 一区二区中文字幕 | 国产婷婷 | 国产精品五区 | 亚洲精品在线视频 | 国产美女一区二区 | 成人一区二区在线 | 国产欧美一区二区三区国产幕精品 | 国产探花在线精品一区二区 | 国产精品1区2区3区 欧美 中文字幕 | 在线91 | 天天操夜夜爽 | 国产一区二区不卡 | 色黄网站| 亚洲视频精品在线 | 国产精品久久久久久久久免费樱桃 | 成人动漫一区二区 |