[C#] XML 1. System.Xml Library 사용 using System.Xml; void Main(string[] args){// XmlDocument 생성XmlDocument xmldoc = new XmlDocument();// Root Node 생성 후 XML Doc에 붙이기XmlNode rootnode = xmldoc.CreateElement("", "Root", "");xmldoc.AppendChild(rootnode);// Xml File Savexmldoc.Save("filepath");// Xml File Loadxmldoc.Load("filepath");// Root Node의 첫번째 Element 생성 XmlElement Node1 = xmldoc.CreateElement("..