我收到运行时错误。请帮忙!
XmlDocument doc = new XmlDocument();
XmlDeclaration decNode = doc.CreateXmlDeclaration("1.0", ENCODING, string.Empty);
XmlAttribute encodeAttr = doc.CreateAttribute("encoding");
encodeAttr.InnerText = "utf-8";
decNode.Attributes.Append(encodeAttr);
doc.AppendChild(decNode);
doc.AppendChild(decNode);