views:

62

answers:

1

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!

+1  A: 

Try Notepad++

I has the bin/Hex feature - and it can use UTF-8

This is nice because you can see the actual sequences for UTF-8 - also BOM bytes

I know this is not binary - but it does show the raw content - bytewise that is ...

Mike