posted by 방랑군 2009. 9. 23. 15:23

        static void Main(string[] args)

        {



            StringBuilder strXML = new StringBuilder(); 

            strXML.AppendLine(@"<?xml version=""1.0"" encoding=""utf-8"" ?>");

            strXML.AppendLine(@"<unity>");

            strXML.AppendLine(@"<NAME>황승재</NAME>");

            strXML.AppendLine(@"<ADDRESS AD1=""서울시"" AD2=""염창동"" AD3=""동아3차아파트"" AD4=""307동 1101호"" />");

            strXML.AppendLine(@"<HP>016-647-0678</HP>");

            strXML.AppendLine(@"</unity>");

            strXML.AppendLine("");



            XmlDocument doc = new XmlDocument();

            doc.LoadXml(strXML.ToString());


            ///

            ///

            string strNode1 = doc.SelectSingleNode("unity/NAME").InnerText;

            string strNode2 = doc.SelectSingleNode("unity/ADDRESS").Attributes["AD1"].Value;



            doc = null;

        }