我在一个字符串变量中有以下 xml 字符串。
string xmlString = "<a:ORegions>
<a:ID>1</a:ID>
<a:regionCode>US</a:regionCode>
</a:ORegions>
<a:ORegions>
<a:ID>2</a:ID>
<a:regionCode>CANADA</a:regionCode>
</a:ORegions>
<a:ORegions>
<a:ID>3</a:ID>
<a:regionCode>ASIA</a:regionCode>
</a:ORegions>
现在我想访问 regionCode 值,即 US、CANADA、ASIA
我如何使用 c# 做到这一点。我是 xml 解析的新手。