SerializationException when serializing lots of objects in .NET

后端 未结 9 938
深忆病人
深忆病人 2020-12-10 01:41

I\'m running into problems serializing lots of objects in .NET. The object graph is pretty big with some of the new data sets being used, so I\'m getting:

Sy         


        
9条回答
  •  情歌与酒
    2020-12-10 02:43

    Sounds like you ran up against an internal limitation in the framework. You could write your own serialization using BinaryReader/Writer or DataContractSerializer or whatever, but it's not ideal I know.

提交回复
热议问题