I use XDocument to create the same RSS feed below:
var document = new XDocument( new XDeclaration("1.0", "utf-8", null), new XElement("rss", new XElement("channel", new XElement("title", "test"), new XElement("dc:creator", "test"),
An exception is thrown while executing this code.
The character ':', the hexadecimal value 0x3A, cannot be included in the name.
How to use symbol : in element name?
user667429
source share