I have a struct that I seralize via XML Serialization. It contains a list of KeyValuePair<T, K>. How do I serlize this via XML appropriately? All my items serialize correctly except it doesn't contain the data for my list.
It's declared as such
VB Code:
System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<string, string>> MyList = new List<KeyValuePair<string,string>>();


Reply With Quote