说我有以下 XML
<doc>
<float name="score">7.8753223</float>
<str name="author">asdadsad</str>
<str name="body">...</str>
<str name="category">haelth-safety</str>
</doc>
和以下课程:
public class Doc{
public double Score { get; set; }
public string Author { get; set; }
public string Body{ get; set; }
public string Category{ get; set; }
}
如何告诉序列化程序使用 xml 属性名称将数据映射到 c# 属性?