我的 xml 文件如下:
<?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 的东西。
你愿意帮我解决这个问题吗?