Replace serializationinfo on a Windows phone

I need to get information about a serialized object. Normally I would use SerializationInfo, but this class is missing in WP7.5.

What class can you offer me?

+5
source share
1 answer

How do you serialize your object? It has been some time since I touched the WP side, but you cannot / cannot just implement the ToBytes () / FromBytes () object on your object and manually write / read parts of your object (s), maybe w / BinaryReader?

0
source

All Articles