2
例如,我有:.net中的二進制序列化/反序列化對象圖大小是否有任何限制?
struct SomeStruct
{
//some fields
//each instance will store info read from file, maybe be 3kb, maybe more.
}
List<SomeStruct> lst = new List<SomeStruct>();
我將添加到該對象列表瘋狂的量,所以它最終會以10Gbs以上的規模。 我可以序列化lst沒有任何錯誤,如內存不足等等?我以後可以反序列化它嗎?