我试过了:
textBox1.Text = new XDocument(new XDeclaration("1.0", "UTF-8", "yes"),
new XElement("root1", new XAttribute( "xmlns", @"http://example.com"), new XElement("a", "b"))
).ToString();
但我得到:
The prefix '' cannot be redefined from '' to 'http://example.com' within the same start element tag.
我还尝试替换(根据我找到的答案):
XAttribute(XNamespace.Xmlns,...
但是也报错了。
注意:我不想在文档中包含多个 xmlns。