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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top