<i id='MD8tl'><tr id='MD8tl'><dt id='MD8tl'><q id='MD8tl'><span id='MD8tl'><b id='MD8tl'><form id='MD8tl'><ins id='MD8tl'></ins><ul id='MD8tl'></ul><sub id='MD8tl'></sub></form><legend id='MD8tl'></legend><bdo id='MD8tl'><pre id='MD8tl'><center id='MD8tl'></center></pre></bdo></b><th id='MD8tl'></th></span></q></dt></tr></i><div id='MD8tl'><tfoot id='MD8tl'></tfoot><dl id='MD8tl'><fieldset id='MD8tl'></fieldset></dl></div>
<tfoot id='MD8tl'></tfoot>
        <bdo id='MD8tl'></bdo><ul id='MD8tl'></ul>
    1. <small id='MD8tl'></small><noframes id='MD8tl'>

      1. <legend id='MD8tl'><style id='MD8tl'><dir id='MD8tl'><q id='MD8tl'></q></dir></style></legend>

        使用 C#,我们如何从 XML Schema 文件中提取属性值

        时间:2023-08-28

        1. <tfoot id='0ha2U'></tfoot>

          <small id='0ha2U'></small><noframes id='0ha2U'>

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

              <tbody id='0ha2U'></tbody>
              <legend id='0ha2U'><style id='0ha2U'><dir id='0ha2U'><q id='0ha2U'></q></dir></style></legend>
                <bdo id='0ha2U'></bdo><ul id='0ha2U'></ul>
                • 本文介绍了使用 C#,我们如何从 XML Schema 文件中提取属性值并将其输出到 CSV 文件中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试提取每个元素的属性值,即在此 XMl Schema 文件中.

                  I am trying to pull the attribute values for each of the element, that is in this XMl Schema file.

                  推荐答案

                  这是一种最简单的方法,可以在节点上使用 for 循环来获取每个节点中的信息.使用 node.ChildNodes 属性来获取 chilenodes.

                  This is easiest way one can use for loops on nodes to get the information in each node. use node.ChildNodes property to get the chilenodes.

                  XmlDocument doc = new XmlDocument();
                  doc.Load("filepath");
                  //Here Path could be- "//ElementType" ---> this will give all nodes with name ElementType 
                  XmlNodeList nodes= doc.SelectNodes("//give path of nodes you want attributes for");
                  foreach (XmlNode node in nodes)
                  {
                      //Assuming you want information of element tags 
                      foreach (XmlNode child in node.ChildNodes)
                      {
                          string name= node.Attributes["type"].Value;
                          string name= node.Attributes["label"].Value;
                      }
                  }
                  

                  这篇关于使用 C#,我们如何从 XML Schema 文件中提取属性值并将其输出到 CSV 文件中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:解析内部标签及其值 下一篇:将 XML 文件读取为 DataSet

                  相关文章

                  最新文章

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

                • <legend id='Rbwhx'><style id='Rbwhx'><dir id='Rbwhx'><q id='Rbwhx'></q></dir></style></legend>

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