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);