标签: .net xml-serialization
class C { [XmlElement("txt")] public string Txt {get; set;} }
使用' " & < >序列化上述内容时,输出为' " & < >
' " & < >
' " & < >
为什么不对'和"进行'和'编码?
'
"
答案 0 :(得分:1)
引号必须在属性中编码,在XML元素文本中不需要。