C#如何取出XML的属性值
<?xml version="1.0" encoding="utf-8" ?>
<root>
<newnode>
<ID>12</ID>
<name>yoyo</name>
<age>11</age>
</newnode>
<newnode>
<ID>18</ID>
<name>hoho</name>
<age>14</age>
</newnode>
</root>
请问如何取出如上XML中的值(ID,NAME,AGE)。。谢谢。。最好是最提的代码!最好有个循环应为有多个NEWNODE!