XPathNavagator 사용하기
using System; using System.Linq; using System.Collections.Generic; using System.Text; using System.Xml.XPath; namespace CH11 { class p566_XPathNavagator { static void Main() { string filePath = @"..\..\booklist.xml"; XPathDocument xPathDoc = new XPathDocument(filePath); XPathNavigator xPathNavi = xPathDoc.CreateNavigator(); // XPath 반복기 XPathNodeIterator xPathNodeIterator = xPathNavi.Select( "//..
AJAX
2008. 2. 14. 16:16