XML - How to grab child nodes in single node and not whole document?
问题 Been looking around for an answer and cant find anything - Im quite new so maybe Im not hitting up the right key words? This is a sample of the XML I am working with <database> <book> <title>A</title> <author> <name>1</name> </author> </book> <book> <title>B</title> <author> <name>2</name> </author> <author> <name>3</name> </author> <author> <name>4</name> </author> <author> <name>5</name> </author> </book> </database> Im trying to use C# XMLDocument to grab for book A author 1 and then for