Dictionary not deserializing
- by Shadow
I'm having a problem where one Dictionary in my project is either not serializing or not deserializing. After deserializing, the data I serialized is simply not in the object.
Here's the relevant snip of the class being serialized:
class Person : ISerializable {
private Dictionary<Relation,List<int>> Relationships = new…