用C# xml保存时没有<?xml version="1.0" encoding="utf-8"?>

2024-12-23 03:17:38
推荐回答(1个)
回答1:

           //初始化一个xml实例 
           XmlDocument myXmlDoc = new XmlDocument(); 
           // 添加文档定义        
           myXmlDoc.AppendChild(myXmlDoc.CreateXmlDeclaration("1.0", "utf-8", ""));
           //生成根节点
           XmlElement root = myXmlDoc.CreateElement("Computers");
           //把根节点添加到xml文档里
           myXmlDoc.AppendChild(root);
           myXmlDoc.Save("haha.xml");