Создание документа XML через LINQ-to-XML - C#
Формулировка задачи:
как создать новый документ xml через LINQ-to-xml
XDocument doc =new XDocument("name.xml",Encoding.UTF8); doc.Add();
Решение задачи: «Создание документа XML через LINQ-to-XML»
textual
Листинг программы
XDocument doc = new XDocument(); doc.Add(new XElement("employeeslist")); foreach (var emp in employees) { doc.Root.Add(new XElement("employee", new XAttribute("id", emp.ID), new XAttribute("name", emp.Name), new XElement("birthday", emp.BirthDate), new XElement("address", emp.Address), new XElement("postindex", emp.Post), new XElement("mobilephone", emp.MobilePhone), new XElement("telephonenumber", emp.TelephoneNumber), new XElement("position", emp.Position), new XElement("education", emp.Education), new XElement("email", emp.EMail))); } doc.Save(filepath);
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д