关于msxml处理命名空间的问题
请问一下我需要解析这么一段xml需要解析
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<persons>
<student>
<stu_name>hami</stu_name>
<stu_age>15</stu_age>
<stu_sex>Ő</stu_sex>
</student>
<teacher>
<tea_name>alin</tea_name>
<tea_age>16</tea_age>
<tea_sex>Ů</tea_sex>
</teacher>
</persons>
</kml>
但是因为用到了命名空间,所以获得不了节点,需要使用msxml中的什么函数才行啊??
最好使用c++语言的,网上很多都使用了c#的,但是c#我几乎啥也不懂