how to serialize object[,]

  • Thread starter Thread starter mmalek
  • Start date Start date
M

mmalek

I have the following property.
public Cell[,] Cell { ............

How do I serialize this?? Is not getting serialized.


Thanks a lot,
Matthias
 
I have the following property.
public Cell[,] Cell { ............

How do I serialize this?? Is not getting serialized.

Thanks a lot,
Matthias

Correction
public Cell[,] Cells { ............

(s missing)
 
Is Cell marked as serializable?
If it's embedded in a manually-serialized object does Cell have manual
serialization methods?
If yes to the above put try .. catches in your serializers and deserializers
in the parent object to ensure serialization \ deserialization is taking
place OK.

You'd probably need to give a few more details about what actually is
happening if you want more help.

HTH,

Adam.

mmalek said:
I have the following property.
public Cell[,] Cell { ............

How do I serialize this?? Is not getting serialized.

Thanks a lot,
Matthias

Correction
public Cell[,] Cells { ............

(s missing)
 
Back
Top