XmlSerializer - There was an error reflecting type

后端 未结 18 1649
借酒劲吻你
借酒劲吻你 2020-11-28 02:46

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passi

18条回答
  •  佛祖请我去吃肉
    2020-11-28 03:41

    I've discovered that the Dictionary class in .Net 2.0 is not serializable using XML, but serializes well when binary serialization is used.

    I found a work around here.

提交回复
热议问题