I have this object AMForm with dictionary as one of its property.
public class AMForm
{
public string Title { get; set; }
public string Description { get; set; }
public Dictionary<string, string> FormValues { get; set; }
}
XmlSerializer
seems unable to serialize the dictionary property.