We have a project which uses serialization by implementing ISerializable and using BinaryFormatter. We are moving to .net compact which do not have BinaryFormatter class. I was wondering if we can use ProtoBuf-Net. Can we instruct ProtoBuf-Net to use GetObjectData() for serialization? Specifically, I want to find out how to use Serializer.Serialize(SerializableInfo, ISerializable) function.
Added I looked at the source code and I see that though the function
Serializer.Serialize(SerializableInfo, T t) where T is ISerializable doesn t use the constraint T is ISerializable at all. Why was T declared to be ISerializable?