I want to serialize a Dictionary that has a custom IEqualityComparer.
I\'ve tried using DataContractSerializer but I can\'t get the C
I just read the error report...
Binary serialization fails for object graphs with more than ~13.2 million objects.
if you have a graph that big, you always may have some problems.
Would you like to try an alternative serializer? "protobuf-net" is a bespoke binary serializer following Google's protocol buffers format, and may work for larger sets, especially in "group" mode.