string filePath = @"geocode.xml";
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(filePath);
XmlElement xyinfo = xmlDocument.DocumentElement;
XmlElement iteminfo = (XmlElement)xyinfo.ChildNodes[2];
XmlElement pointinfo = (XmlElement)iteminfo.ChildNodes[0];
XmlElement pointinfox = (XmlElement)pointinfo.ChildNodes[0];
XmlElement pointinfoy = (XmlElement)pointinfo.ChildNodes[1];
label2.Text = pointinfox.InnerText;
label4.Text = pointinfoy.InnerText;
string filePath2 = @"geocode2.xml";
XmlDocument xmlDocument2 = new XmlDocument();
xmlDocument2.Load(filePath2);
XmlElement xyinfo2 = xmlDocument2.DocumentElement;
XmlElement iteminfo2 = (XmlElement)xyinfo2.ChildNodes[2];
XmlElement pointinfo2 = (XmlElement)iteminfo2.ChildNodes[0];
XmlElement pointinfox2 = (XmlElement)pointinfo2.ChildNodes[0];
XmlElement pointinfoy2 = (XmlElement)pointinfo2.ChildNodes[1];
label5.Text = pointinfox2.InnerText;
label6.Text = pointinfoy2.InnerText;
첫번째 아이템의 좌표 추출이다. 다음 아이템의 것을 추출하려면, xyinfo2.ChildNodes에서 3, 4로 이동하면서 찾으면 된다.

㈜파코메리(대표 박형미)는 지난 10일, 교육계 최연소 여성 CEO이자 교육 컨텐츠 분야 여성 CEO 최초로 미국 월스트리트에 진출한 박이빛 씨를 초청 '대한민국 20대의 꿈과 성공'이라는 주제로 강연회를 가졌다.
댓글 달기