xml文件中如何避免特殊字符导致度文件失败

XDocument document = XDocument.Load(new System.IO.StringReader(str));
str = System.Security.SecurityElement.Escape(str);

使用 System.Security.SecurityElement.Escape(str); 可以将含有特殊字符的字符串转化成等效的安全的xml文件

转载于:https://www.cnblogs.com/xplangren/archive/2013/02/20/2918331.html

你可能感兴趣的:(xml文件中如何避免特殊字符导致度文件失败)