本文介绍了使用C#读取xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想阅读以下具有相同元素名称和不同属性的xml文件我希望像[Depositor 1,prakash,Check]这样的值提前感谢



im want to read the below xml file having same element name and differet attributes i want the values like [Depositor 1,prakash,Cheque] thanks in advance

<subform name="sfDepositorDetails" presence="visible">
                  <instanceManager name="_sfDepositor" />
                  <subform name="sfDepositor">
                    <field name="lblKeyDepositor">
                      <value>
                        <text>Depositor 1</text>
                      </value>
                    </field>
                    <field name="txtDepositorName">
                      <value>
                        <text>prakash</text>
                      </value>
                    </field>
                    <field name="ddHSBCFunds">
                      <value override="1">
                        <text>Cheque</text>
                      </value>
                    </field>
                  </subform>

推荐答案




这篇关于使用C#读取xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 10:35