我将给出一组我在 w3schools XML 示例中找到的简单 xml 行。
我想知道如何从我的控制台应用程序访问这些数据(我通过控制台应用程序项目插入了一个 app.config)
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>