• LinQ To XML 新建文件并增加节点


    XDocument myXDoc = new XDocument(new XElement("Results"));
    myXDoc.Save(_fileName)
    XDocument xDocument = XDocument.Load(fileName);
                    xDocument.Root.Add(new XElement("Result",new XAttribute("ItemId",this.itemId),new XAttribute("ItemName",this.itemName)));
    如果不用xDocument.Root而是直接用xDocument.Add会报错说此操作将创建一个错误结构的文档,因为试图增加两个根节点。
  • 相关阅读:
    2021 发工资咯:)
    HDU-2021
    HDU-2020
    HDU-2019
    HDU-2018
    HDU-2017
    HDU-2016
    HDU-2015
    HDU-2014
    HDU-2013
  • 原文地址:https://www.cnblogs.com/Farseer1215/p/2370596.html
Copyright © 2020-2023  润新知