C#으로 XmlNodeList를 이용한 XML문서 읽기
읽어들일 XML 파일 'booklist.xml' 기초에서 실무까지 XML 신민철 프리렉 35000 사랑과 전쟁 이사랑 전쟁문화사 15000 마이크로 소프트 빌 게이츠 마소문화사 20000 액션가면부인 바람났네 짱구 짱구출판사 12000 위 문서를 C#으로 읽어 들이기 위해 XmlDocument 개체를 이용한다. using System; using System.Linq; using System.Collections.Generic; using System.Text; using System.Xml; namespace CH11 { class p556 { static void Main() { string filePath = @"..\..\booklist.xml"; XmlDocument xDoc = new XmlD..