I have the following members defined in a class that I'm trying to deserialise:
[DataMemberAttribute(Name = "cust_title")]
public String Title { get; set; }
[DataMemberAttribute(Name = "cust_description")]
public String Description { get; set; }
For some reason, the deserialisation fails (it seems to ignore the DataMemberAttribute).
Does anyone know how to get this working?