Ich habe versucht:Wie spezifiziert man ein xmlns für XDocument?
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();
Aber ich bekomme:
The prefix '' cannot be redefined from '' to 'http://example.com' within the same start element tag.
Ich versuchte Substitution auch (nach einer Antwort gefunden I):
XAttribute(XNamespace.Xmlns,...
bekam aber auch einen Fehler.
Hinweis: Ich versuche nicht, mehr als ein xmlns im Dokument zu haben.
Vielleicht funktioniert das für Sie: http://Stackoverflow.com/a/2874572/1373170 –