我有一个对象,它有一个字符串属性,其中有一个带有双引号的值。我需要序列化这个对象,然后使用那个 XML。我不会反序列化这个 xml。
我无法在 XML 文件中获取正确的内容。让我用一个代码示例来解释:
[Serializable]
public class Test {
[XmlElement]
public string obj { get; set; }
}
class Program {
static void Main(string[] args) {
var st ="Priority == \"1\"";
Test test = new Test();
test.obj = st;
//Serialize this object
XmlSerializer xsSubmit = new XmlSerializer(typeof(Test));
StringWriter sww = new StringWriter();
XmlWriter writer = XmlWriter.Create(sww, new XmlWriterSettings {
OmitXmlDeclaration = true
});
var ns = new XmlSerializerNamespaces();//just to make things simpler here
ns.Add(string.Empty, string.Empty);
xsSubmit.Serialize(writer, test, ns);
//My XML
var xml = sww.ToString();
}
}
我需要我的 xml 是:
<Test><obj>Priority=="1"</obj></Test>
我现在得到:
<Test><obj>Priority==\"1\"</obj></Test>
我什至尝试将字符串编码为 HTML,var html = HttpUtility.HtmlEncode(st);
在这种情况下,变量html
格式正确,但是在序列化时我得到:
<Test><obj>Priority==&quot;1&quot;</obj></Test>
需要一些帮助。