使用xmldocument读取xml

使用xmldocument读取xml

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

问题描述

你好,

我有一个
这样的xml

Hi there,

I have a xml like

- <!-- SendRequest-->
- <x:Action xmlns:x="SignIn">
  <Value1>Nilai Pertama</Value1>
  <Value2>Nilai Kedua</Value2>
  </x:Action>



我该如何读取
的值-操作=登录"
-Value1 ="Nilai Pertama"
-Value2 ="Nilai Kedua"

谢谢



How can i read the value of
- Action = "SignIn"
- Value1 = "Nilai Pertama"
- Value2 = "Nilai Kedua"

Thanks

推荐答案




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

08-22 20:40