I've working without problems serializating object graphs to and from files. Everything was fine until today: A dictionary, created in a constructor and NEVER deleted, was lost (null referece) just after deserialization from file, for the first time in more than a year doing the same without troubles.
So, is there a Software Tool to look into binary serialization content showing a human/developer-readable version (a la Reflector) of what is stored?
AKA: How to analyze (easy, no binary to IL translation. That would take months) binary serialized content?
Thanks!