我正在创建一个 Xml XDocument。当我尝试插入一个包含字母、空格、特殊字符和数字的字符串时。它在运行时给出错误。
The ' ' character, hexadecimal value 0x20, cannot be included in a name.
我怎样才能插入这种类型的字符串。有没有其他方法可以插入这种类型的字符串。
我正在使用的代码:
XDocument xDoc = new XDocument(
new XDeclaration("1.0", "UTF-8", "yes"),
new XElement("Mail"));
var template = @"To MOM
13, AD1
tr y
fghdh, Madhya Pradesh, India
Dear Ram,
We would like to appoint you for new job";
XElement varXElement = new XElement("studentName", template);
xDoc.Element("Mail").Add(varXElement);
xDoc.Save(filePath);