我的XML文件下面瞭解XML文件中的值的最佳方式:什麼是用C#
<?xml version="1.0" encoding="euc-kr"?>
<root>
<params>
<param id="ErrorCode" type="STRING">-1</param>
<param id="ErrorMsg" type="STRING">FAIL</param>
</params>
<dataset id="G_HeaderCommon">
<colinfo id="string000" size="128" type="STRING"/>
<record>
<string000>XXXXXXXXXXXXXXXXX</string000>
</record>
</dataset>
<dataset id="G_HeaderStdmsg">
<colinfo id="std_msg_cntn" size="128" type="STRING"/>
<colinfo id="std_msg_code" size="128" type="STRING"/>
<record>
<std_msg_cntn>System error occured.</std_msg_cntn> --> I have to get this value.
<std_msg_code>BL0012</std_msg_code>
</record>
</dataset>
</root>
而且我想要得到的「std_msg_cntn」的值。
XPath或Linq會沒事的。
我不是很擅長xml的東西。
你想幫我解決這個問題嗎?
你嘗試過什麼?這對於XPath或LINQ to XML來說是微不足道的,稍微閱讀MSDN上的文檔將爲您提供幫助。 –